Skip to content

Commit 47c99e5

Browse files
committed
Fixed typos and removed unused variables in logs_e2e_tests
1 parent 930058a commit 47c99e5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

logs_e2e_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,9 @@ func TestClient_GetLogs(t *testing.T) {
2222

2323
noError(t, err, "api.GetLogs")
2424

25-
var expected []map[string]interface{}
26-
var actual []map[string]interface{}
27-
2825
equal := cmp.Equal(expectedLogs, actualLogs)
2926

3027
if !equal {
31-
t.Errorf("api.GetLogs not working\n: %s\n", cmp.Diff(expected, actual))
28+
t.Errorf("api.GetLogs not working\n: %s\n", cmp.Diff(expectedLogs, actualLogs))
3229
}
3330
}

0 commit comments

Comments
 (0)