Commit 8df859d0 authored by Nick Craver's avatar Nick Craver

Tests: add output to Profiling.Simple

Unsure why this fails on Appveyor...adding some logging.
parent ba1d038b
......@@ -38,6 +38,11 @@ public void Simple()
Assert.Equal("world", result.AsString());
var cmds = conn.FinishProfiling(profiler.MyContext);
var i = 0;
foreach (var cmd in cmds)
{
Log("Command {0}: {1}", i++, cmd.ToString().Replace("\n", ", "));
}
Assert.Equal(3, cmds.Count());
var set = cmds.SingleOrDefault(cmd => cmd.Command == "SET");
......
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