Print ApplicationId in test_print_caps
This commit is contained in:
parent
935c77f59a
commit
a89a106d20
1 changed files with 4 additions and 1 deletions
|
@ -142,6 +142,9 @@ pub fn test_print_caps(
|
||||||
) -> Result<TestOutput, TestError> {
|
) -> Result<TestOutput, TestError> {
|
||||||
let ard = ca.get_app_data()?;
|
let ard = ca.get_app_data()?;
|
||||||
|
|
||||||
|
let aid = ard.get_application_id()?;
|
||||||
|
println!("aid: {:#x?}", aid);
|
||||||
|
|
||||||
let hist = ard.get_historical()?;
|
let hist = ard.get_historical()?;
|
||||||
println!("hist: {:#?}", hist);
|
println!("hist: {:#?}", hist);
|
||||||
|
|
||||||
|
@ -534,7 +537,7 @@ pub fn run_test(
|
||||||
) -> Result<TestOutput, TestError> {
|
) -> Result<TestOutput, TestError> {
|
||||||
let mut ca = card.get_card_app()?;
|
let mut ca = card.get_card_app()?;
|
||||||
let ard = ca.get_app_data()?;
|
let ard = ca.get_app_data()?;
|
||||||
let _app_id = ard.get_aid()?;
|
let _app_id = ard.get_application_id()?;
|
||||||
|
|
||||||
t(&mut ca, param)
|
t(&mut ca, param)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue