Skip to content

Commit 247c6d4

Browse files
committed
cleanup
Signed-off-by: Kyle Quest <kcq.public@gmail.com>
1 parent 1a56f37 commit 247c6d4

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

pkg/app/master/probe/http/swagger_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,3 @@ func TestBuildQueryAndHeaders_ArrayHandling(t *testing.T) {
175175
t.Fatalf("array item -> %q; want %q", values.Get("ids"), "1")
176176
}
177177
}
178-

pkg/docker/dockerimage/topobjects_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ func TestTopObjects_List_NilSafety(t *testing.T) {
5555
t.Run(tt.name, func(t *testing.T) {
5656
to := tt.setup(t)
5757
result := to.List()
58-
58+
5959
if len(result) != tt.wantLen {
6060
t.Errorf("List() returned %d items, want %d", len(result), tt.wantLen)
6161
}
62-
62+
6363
// Verify the order is correct (descending by size)
6464
for i := 1; i < len(result); i++ {
6565
if result[i-1] == nil || result[i] == nil {
@@ -81,7 +81,7 @@ func TestTopObjects_List_ModificationSafety(t *testing.T) {
8181

8282
originalLen := to.Len()
8383
result := to.List()
84-
84+
8585
// Modify the result slice
8686
if len(result) > 0 {
8787
result[0] = &ObjectMetadata{Name: "modified", Size: 999}

0 commit comments

Comments
 (0)