From eb1960b1dbaa4432eb65c7f00689146c815db823 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 9 Jan 2019 15:13:08 +0000 Subject: Fix otp::totp_error test case Previously the totp_error test case in the otp test suite called hotp methods. This patch fixes the test case by calling totp metods instead. --- tests/otp.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/otp.rs b/tests/otp.rs index 2b46088..fcf0020 100644 --- a/tests/otp.rs +++ b/tests/otp.rs @@ -256,17 +256,17 @@ fn totp_slot_name(device: DeviceWrapper) { #[test_device] fn totp_error(device: DeviceWrapper) { let admin = make_admin_test_device(device); - let slot_data = OtpSlotData::new(1, "", HOTP_SECRET, OtpMode::SixDigits); + let slot_data = OtpSlotData::new(1, "", TOTP_SECRET, OtpMode::SixDigits); assert_eq!( Err(CommandError::NoName), - admin.write_hotp_slot(slot_data, 0) + admin.write_totp_slot(slot_data, 0) ); - let slot_data = OtpSlotData::new(4, "test", HOTP_SECRET, OtpMode::SixDigits); + let slot_data = OtpSlotData::new(20, "test", TOTP_SECRET, OtpMode::SixDigits); assert_eq!( Err(CommandError::InvalidSlot), - admin.write_hotp_slot(slot_data, 0) + admin.write_totp_slot(slot_data, 0) ); - let code = admin.get_hotp_code(4); + let code = admin.get_totp_code(20); assert_eq!(CommandError::InvalidSlot, code.unwrap_err()); } -- cgit v1.2.1