We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b577a commit ae51afdCopy full SHA for ae51afd
LinkDotNet.Blog.UnitTests/Web/Shared/Services/UserRecordServiceTests.cs
@@ -81,7 +81,7 @@ public async Task ShouldNotStoreForAdmin()
81
[Fact]
82
public async Task ShouldNotThrowExceptionToOutsideWorld()
83
{
84
- localStorageService.Setup(l => l.SetItemAsync("user", "some value")).Throws<Exception>();
+ localStorageService.Setup(l => l.SetItemAsync("user", It.IsAny<Guid>())).Throws<Exception>();
85
86
Func<Task> act = () => sut.StoreUserRecordAsync();
87
0 commit comments