summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs')
-rw-r--r--TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs b/TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs
index ebe7493..4738ba1 100644
--- a/TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs
+++ b/TwoStepsAuthenticator.UnitTests/CounterAuthenticatorTests.cs
@@ -13,7 +13,7 @@ namespace TwoStepsAuthenticator.UnitTests {
[Test]
public void CreateKey() {
var authenticator = new CounterAuthenticator();
- var secret = authenticator.GenerateKey();
+ var secret = Authenticator.GenerateKey();
var code = authenticator.GetCode(secret, 0L);
Assert.IsTrue(authenticator.CheckCode(secret, code, 0L), "Generated Code doesn't verify");