Skip to content

Commit

Permalink
Apply review suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: French Ben <FrenchBen@users.noreply.github.com>
Signed-off-by: Dmitry Chepurovskiy <me@dm3ch.net>
  • Loading branch information
dm3ch and FrenchBen committed Oct 13, 2023
1 parent e6d9b99 commit 0ec47f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/storage/driver/cfgmaps_test.go
Expand Up @@ -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)
}
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/storage/driver/secrets_test.go
Expand Up @@ -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)
}
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/storage/driver/sql_test.go
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 0ec47f8

Please sign in to comment.