Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 24a81fb

Browse files
committed
Fix redis scan test
1 parent 6f10ef9 commit 24a81fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ServiceStack.Redis.Tests/RedisScanTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void Can_scan_and_search_10_collection()
5252
var keys = 11.Times(x => "KEY" + x);
5353
Redis.SetAll(keys.ToSafeDictionary(x => x));
5454

55-
var ret = Redis.Scan(0, 10, match: "KEY1*");
55+
var ret = Redis.Scan(0, 11, match: "KEY1*");
5656

5757
Assert.That(ret.Cursor, Is.GreaterThanOrEqualTo(0));
5858
Assert.That(ret.AsStrings(), Is.EquivalentTo(new[] { "KEY1", "KEY10" }));

0 commit comments

Comments
 (0)