Commit da3cdb80 authored by Nick Craver's avatar Nick Craver

Fix my transgressions

parent b9fe80ad
......@@ -711,7 +711,7 @@ public void MovedProfiling()
{
// expect 1 DEL, 1 SET, 1 GET (to right master), 1 GET (to wrong master) that was responded to by an ASK, and 1 GET (to right master or a slave of it)
Assert.Equal(5, msgs.Count);
Assert.Equal(1, msgs.Count(c => c.Command == "DEL"));
Assert.Equal(1, msgs.Count(c => c.Command == "DEL" || c.Command == "UNLINK"));
Assert.Equal(1, msgs.Count(c => c.Command == "SET"));
Assert.Equal(3, msgs.Count(c => c.Command == "GET"));
......
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