tests: fix some error strings

This commit is contained in:
Vincent Bernat
2022-05-16 18:30:51 +02:00
parent 44ab2c380c
commit ec5fd0351a
3 changed files with 4 additions and 4 deletions

View File

@@ -199,7 +199,7 @@ func TestQueryFlowsTables(t *testing.T) {
c.flowsTables = tc.Tables
got := c.queryFlowsTable(tc.Query, tc.Start, tc.End, tc.Resolution)
if diff := helpers.Diff(got, tc.Expected); diff != "" {
t.Fatalf("queryFlowsTable(): (-want, +got):\n%s", diff)
t.Fatalf("queryFlowsTable(): (-got, +want):\n%s", diff)
}
})
}