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 73f56a3 commit 5b941efCopy full SHA for 5b941ef
Enyim.Caching.Tests/MemcachedClientGetTests.cs
@@ -117,8 +117,8 @@ public async Task When_Getting_Empty_String_Async_Result_Is_Successful()
117
var key = GetUniqueKey("Get");
118
var empty = string.Empty;
119
Store(key: key, value: empty);
120
- var getResult = await _client.GetAsync<string>(key);
121
- Assert.Equal(getResult.Value, empty);
+ var getResult = await _client.GetValueAsync<string>(key);
+ Assert.Equal(getResult, empty);
122
}
123
124
[Fact]
0 commit comments