Merge pull request #1500 from TimeIncOSS/improve-test-helpers

Let test helpers to print out expected output
This commit is contained in:
Paul Hinze 2015-04-13 08:20:53 -05:00
commit eeb46e4642
2 changed files with 3 additions and 3 deletions

View File

@ -302,8 +302,8 @@ func testFunction(t *testing.T, config testFunctionConfig) {
if !reflect.DeepEqual(out, tc.Result) {
t.Fatalf(
"%d: bad output for input: %s\n\nOutput: %#v",
i, tc.Input, out)
"%d: bad output for input: %s\n\nOutput: %#v\nExpected: %#v",
i, tc.Input, out, tc.Result)
}
}
}

View File

@ -45,7 +45,7 @@ func TestDetect(t *testing.T) {
t.Fatalf("%d: bad err: %s", i, err)
}
if output != tc.Output {
t.Fatalf("%d: bad output: %s", i, output)
t.Fatalf("%d: bad output: %s\nexpected: %s", i, output, tc.Output)
}
}
}