Commit c14be682 authored by Marc Gravell's avatar Marc Gravell

ScanResume - claimed only bad on Windows redis, so... let's check that

parent db391eb9
......@@ -86,12 +86,15 @@ public void ScansIScanning()
}
}
[Fact(Skip = "Windows Redis 3.x is flaky here. The test runs fine against other servers...")]
[Fact]
public void ScanResume()
{
using (var conn = Create(allowAdmin: true))
{
const int DB = 7;
// only goes up to 3.*, so...
Skip.IfMissingFeature(conn, "Avoiding Redis on Windows", x => x.Version >= new Version(4, 0));
var db = conn.GetDatabase(DB);
var server = GetServer(conn);
server.FlushDatabase(DB);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment