Commit 8976c8cc authored by Marc Gravell's avatar Marc Gravell

fix false positive test

parent 6b112be2
......@@ -88,7 +88,7 @@ public async Task ConnectWithWrongPassword(string password)
}
}).ConfigureAwait(false);
Output.WriteLine("Exception: " + ex.Message);
Assert.Equal("It was not possible to connect to the redis server(s). There was an authentication failure; check that passwords (or client certificates) are configured correctly.", ex.Message);
Assert.StartsWith("It was not possible to connect to the redis server(s). There was an authentication failure; check that passwords (or client certificates) are configured correctly.", ex.Message);
}
}
}
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