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