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 17cdf90 commit b5c23e6Copy full SHA for b5c23e6
tests/Valkey.Glide.IntegrationTests/StandaloneClientTests.cs
@@ -278,7 +278,7 @@ public async Task BatchKeyCopyAndKeyMove(bool isAtomic)
278
_ = batch2.KeyMove(moveKey, 2);
279
280
object?[] results = (await client.Exec((Batch)batch, false))!;
281
- object?[] results2 = (await client.Exec((Batch)batch2, false))!;
+ object?[] results2 = (await client.Exec(batch2, false))!;
282
283
Assert.Multiple(
284
() => Assert.True((bool)results[0]!), // Set sourceKey
0 commit comments