We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 930058a commit 47c99e5Copy full SHA for 47c99e5
logs_e2e_test.go
@@ -22,12 +22,9 @@ func TestClient_GetLogs(t *testing.T) {
22
23
noError(t, err, "api.GetLogs")
24
25
- var expected []map[string]interface{}
26
- var actual []map[string]interface{}
27
-
28
equal := cmp.Equal(expectedLogs, actualLogs)
29
30
if !equal {
31
- t.Errorf("api.GetLogs not working\n: %s\n", cmp.Diff(expected, actual))
+ t.Errorf("api.GetLogs not working\n: %s\n", cmp.Diff(expectedLogs, actualLogs))
32
}
33
0 commit comments