Skip to content

Commit 3a6126d

Browse files
committed
fix the goimports
Signed-off-by: RayyanSeliya <rayyanseliya786@gmail.com>
1 parent 1dbfa95 commit 3a6126d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/utils/names_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ func TestValidateNamespace(t *testing.T) {
227227
{"a", true},
228228
{"a-b", true},
229229
{"abc-123-xyz", true},
230-
{"123app", true}, // DNS-1123 allows starting with number
231-
{"123invalid", true}, // DNS-1123 allows starting with number
232-
{"1", true}, // single number is valid
230+
{"123app", true}, // DNS-1123 allows starting with number
231+
{"123invalid", true}, // DNS-1123 allows starting with number
232+
{"1", true}, // single number is valid
233233

234234
// Invalid namespaces
235235
{"My-App", false}, // uppercase not allowed

0 commit comments

Comments
 (0)