aboutsummaryrefslogtreecommitdiff
path: root/src/tests/otp.rs
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2018-05-31 11:39:13 +0200
committerRobin Krahl <robin.krahl@ireas.org>2018-05-31 11:39:13 +0200
commitbdb5ba7157ad93461bb1deea4b232178d16ef4c9 (patch)
tree3f3d14ed8f60e4802bc9f145a0d7e48aa72aea20 /src/tests/otp.rs
parentc37899dfee9057497f6622149e3b06ae8def55d5 (diff)
downloadnitrokey-rs-bdb5ba7157ad93461bb1deea4b232178d16ef4c9.tar.gz
nitrokey-rs-bdb5ba7157ad93461bb1deea4b232178d16ef4c9.tar.bz2
Fix formatting issues
Diffstat (limited to 'src/tests/otp.rs')
-rw-r--r--src/tests/otp.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tests/otp.rs b/src/tests/otp.rs
index de3b646..44689be 100644
--- a/src/tests/otp.rs
+++ b/src/tests/otp.rs
@@ -1,7 +1,7 @@
use std::ops::Deref;
+use tests::util::{Target, ADMIN_PASSWORD, USER_PASSWORD};
use {Admin, Authenticate, CommandError, CommandStatus, Config, ConfigureOtp, GenerateOtp, OtpMode,
OtpSlotData};
-use tests::util::{Target, ADMIN_PASSWORD, USER_PASSWORD};
// test suite according to RFC 4226, Appendix D
static HOTP_SECRET: &str = "3132333435363738393031323334353637383930";
@@ -30,7 +30,10 @@ fn get_admin_test_device() -> Admin<Target> {
fn configure_hotp(admin: &ConfigureOtp, counter: u8) {
let slot_data = OtpSlotData::new(1, "test-hotp", HOTP_SECRET, OtpMode::SixDigits);
- assert_eq!(CommandStatus::Success, admin.write_hotp_slot(slot_data, counter.into()));
+ assert_eq!(
+ CommandStatus::Success,
+ admin.write_hotp_slot(slot_data, counter.into())
+ );
}
fn check_hotp_codes(device: &GenerateOtp, offset: u8) {