Apply review suggestions

Co-authored-by: French Ben <FrenchBen@users.noreply.github.com>
Signed-off-by: Dmitry Chepurovskiy <me@dm3ch.net>
This commit is contained in:
Dmitry Chepurovskiy 2023-10-13 20:41:50 +03:00
parent e6d9b99255
commit 0ec47f8ec9
No known key found for this signature in database
GPG key ID: 5B3A5FDCBFF9B3A4
3 changed files with 3 additions and 3 deletions

View file

@ -136,7 +136,7 @@ func TestConfigMapList(t *testing.T) {
}
_, ok = rls.Labels["key1"]
if !ok {
t.Fatalf("Expected 'key-1' label in results, actual %v", rls.Labels)
t.Fatalf("Expected 'key1' label in results, actual %v", rls.Labels)
}
}

View file

@ -136,7 +136,7 @@ func TestSecretList(t *testing.T) {
}
_, ok = rls.Labels["key1"]
if !ok {
t.Fatalf("Expected 'key-1' label in results, actual %v", rls.Labels)
t.Fatalf("Expected 'key1' label in results, actual %v", rls.Labels)
}
}

View file

@ -166,7 +166,7 @@ func TestSQLList(t *testing.T) {
}
_, ok = rls.Labels["key1"]
if !ok {
t.Fatalf("Expected 'key-1' label in results, actual %v", rls.Labels)
t.Fatalf("Expected 'key1' label in results, actual %v", rls.Labels)
}
}