Skip to content

Commit e490e69

Browse files
committed
make linter happy again
Signed-off-by: Jakub Jarosz <jakub@jarosz.dev>
1 parent 3eef293 commit e490e69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

inspector_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ func TestInspectorListsPodsInNotExistingNamespace(t *testing.T) {
373373
}
374374
want := &corev1.PodList{}
375375
if !cmp.Equal(want, got) {
376-
t.Errorf(cmp.Diff(want, got))
376+
t.Error(cmp.Diff(want, got))
377377
}
378378
}
379379

@@ -387,7 +387,7 @@ func TestInspectorListsNotExistingPodsInDefaultNamespace(t *testing.T) {
387387
}
388388
want := &corev1.PodList{}
389389
if !cmp.Equal(want, got) {
390-
t.Errorf(cmp.Diff(want, got))
390+
t.Error(cmp.Diff(want, got))
391391
}
392392
}
393393

@@ -405,7 +405,7 @@ func TestInspectorListsExistingPodsInDefaultNamespace(t *testing.T) {
405405
}
406406
want := podListDefaultNamespace
407407
if !cmp.Equal(want, got) {
408-
t.Errorf(cmp.Diff(want, got))
408+
t.Error(cmp.Diff(want, got))
409409
}
410410
}
411411

0 commit comments

Comments
 (0)