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 4583afd commit 24126afCopy full SHA for 24126af
Enyim.Caching.Tests/MemcachedClientGetTests.cs
@@ -103,8 +103,8 @@ public async Task GetValueOrCreateAsyncTest()
103
{
104
var key = "GetValueOrCreateAsyncTest_" + Guid.NewGuid();
105
var posts1 = await _client.GetValueOrCreateAsync(
106
- key,
107
- 10,
+ key,
+ 10,
108
async () => await GenerateValue());
109
Assert.NotNull(posts1);
110
@@ -129,6 +129,7 @@ private Task<IEnumerable<BlogPost>> GenerateValue()
129
internal class BlogPost
130
131
public string Title { get; set; }
132
+ public string Tags { get; set; }
133
public string Body { get; set; }
134
}
135
0 commit comments