diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2018-05-29 22:54:01 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2018-05-29 22:54:01 +0200 |
commit | 9897f2448ed6e62b755079c430a55a6b22bf5694 (patch) | |
tree | a74cca554ba0a3eb1f9728df37ba7c8128739158 | |
parent | 7197f19f38b06fe2953cfba1fe755d4562f5786e (diff) | |
download | nitrokey-rs-9897f2448ed6e62b755079c430a55a6b22bf5694.tar.gz nitrokey-rs-9897f2448ed6e62b755079c430a55a6b22bf5694.tar.bz2 |
Fix message for Nitrokey connection in tests/otp.rs
-rw-r--r-- | src/tests/otp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/otp.rs b/src/tests/otp.rs index 8c59341..077157f 100644 --- a/src/tests/otp.rs +++ b/src/tests/otp.rs @@ -23,7 +23,7 @@ static TOTP_CODES: &[(u64, &str)] = &[ fn get_admin_test_device() -> Admin<Target> { Target::connect() - .expect("Could not connect to the Nitrokey Pro.") + .expect("Could not connect to the Nitrokey.") .authenticate_admin(ADMIN_PASSWORD) .expect("Could not login as admin.") } |