We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110c01c commit f31c89fCopy full SHA for f31c89f
2 files changed
CodeLineCounter.Tests/HashUtilsMockTests.cs
@@ -18,7 +18,6 @@ protected override void Dispose(bool disposing)
18
{
19
if (disposing)
20
21
- _mockHashUtils.VerifyNoOtherCalls();
22
HashUtils.Implementation = _originalImplementation;
23
}
24
CodeLineCounter.Tests/HashUtilsTests.cs
@@ -68,7 +68,7 @@ public void Implementation_IsInitializedByDefault()
68
69
// Act & Assert
70
Assert.NotNull(HashUtils.Implementation);
71
- Assert.IsAssignableFrom<IHashUtils>(HashUtils.Implementation);
+ Assert.IsType<IHashUtils>(HashUtils.Implementation, exactMatch: false);
72
73
74
0 commit comments