Skip to content

Commit

Permalink
Update CacheManagerTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco authored Jul 26, 2024
1 parent 0b70abd commit 3bcb6b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/CrispyWaffle.Tests/Cache/CacheManagerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public void Set_ShouldStoreValueInAllRepositories()

CacheManager.Set(value, key);

_mockRepository1.Verify(m => m.Set(value, key, null), Times.Once);
_mockRepository2.Verify(m => m.Set(value, key, null), Times.Once);
_mockRepository1.Verify(m => m.Set(value, key, (TimeSpan?)null), Times.Once);
_mockRepository2.Verify(m => m.Set(value, key, (TimeSpan?)null), Times.Once);
}

[Fact]
Expand Down

0 comments on commit 3bcb6b7

Please sign in to comment.