Skip to content

Commit

Permalink
[dotnet] remove virtual authenticator credential test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Sep 23, 2023
1 parent fb358a4 commit 3999f31
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions dotnet/test/common/VirtualAuthn/VirtualAuthenticatorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,15 +337,9 @@ public void ShouldGetCredential()

Assert.True(credential1.IsResidentCredential);
Assert.NotNull(credential1.PrivateKey);
Assert.AreEqual("localhost", credential1.RpId);
Assert.AreEqual(new byte[] { 1 }, credential1.UserHandle);
Assert.AreEqual(1, credential1.SignCount);

Assert.False(credential2.IsResidentCredential);
Assert.NotNull(credential2.PrivateKey);
Assert.IsNull(credential2.RpId);
Assert.IsNull(credential2.UserHandle);
Assert.AreEqual(1, credential2.SignCount);
}

[Test]
Expand Down Expand Up @@ -481,4 +475,4 @@ public void testSetUserVerified()
Assert.True(error.StartsWith("NotAllowedError"));
}
}
}
}

0 comments on commit 3999f31

Please sign in to comment.