diff --git a/pkg/k8s/utils/utils_test.go b/pkg/k8s/utils/utils_test.go index 40459241..29ce09ef 100644 --- a/pkg/k8s/utils/utils_test.go +++ b/pkg/k8s/utils/utils_test.go @@ -72,6 +72,5 @@ func TestGetNamespace(t *testing.T) { func TestPointer(t *testing.T) { s := "test" p := Pointer(s) - assert.Equal(t, &s, p, "Should contain the same string") - assert.NotSame(t, s, p, "Should not be the same") + assert.Equal(t, &s, p, "Should return pointer to variable with the same value") }