Commit d2c6ae62d676a34b5bcb60274292c0fc3cc9dc54

timvisee 2023-01-12T14:22:12

Fix unit tests for get_url change

diff --git a/src/custom_providers.rs b/src/custom_providers.rs
index 1e88a0c..08ec2e8 100644
--- a/src/custom_providers.rs
+++ b/src/custom_providers.rs
@@ -52,6 +52,6 @@ mod test {
     fn get_url_steam() {
         let totp = TOTP::new_steam("TestSecretSuperSecret".into(), "constantoine".into());
         let url = totp.get_url();
-        assert_eq!(url.as_str(), "otpauth://steam/Steam:constantoine?issuer=Steam&secret=KRSXG5CTMVRXEZLUKN2XAZLSKNSWG4TFOQ&digits=5&algorithm=SHA1");
+        assert_eq!(url.as_str(), "otpauth://steam/Steam:constantoine?secret=KRSXG5CTMVRXEZLUKN2XAZLSKNSWG4TFOQ&digits=5&algorithm=SHA1&issuer=Steam");
     }
-}
\ No newline at end of file
+}
diff --git a/src/lib.rs b/src/lib.rs
index 6702570..96ab0d8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1278,7 +1278,7 @@ mod tests {
         let hash_digest = Sha512::digest(data);
         assert_eq!(
             format!("{:x}", hash_digest).as_str(),
-            "025809c9db9c2c918930e018549c90929a083ee757156737812bad40ded64312c1526c73d8f2f59d5c203b97141ddfc331b1192e234f4f43257f50a6d05e382f"
+            "2b6e6205bf1cea547b20af23c504eab8062af96c642c0d76afb3df6695fa231b210b7ae435e34bea1ef8b91216fd3a0f7065e7992f1703e0737600b464a1083e"
         );
     }