Skip to content

Commit e7004df

Browse files
committed
Lint
1 parent e66eb16 commit e7004df

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

slice_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func TestSortSliceBible(t *testing.T) {
7373
for i, s := range data {
7474
if s != sorted[i] {
7575
t.Errorf("%v got: %v", i, s)
76-
t.Errorf("%v want: %v\n\n", i, sorted[i])
76+
t.Errorf("%v want: %v", i, sorted[i])
7777
}
7878
}
7979
}

sort_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func TestSortBible(t *testing.T) {
7373
for i, s := range data {
7474
if s != sorted[i] {
7575
t.Errorf("%v got: %v", i, s)
76-
t.Errorf("%v want: %v\n\n", i, sorted[i])
76+
t.Errorf("%v want: %v", i, sorted[i])
7777
}
7878
}
7979
}

0 commit comments

Comments
 (0)