Skip to content

Commit a6d5793

Browse files
committed
Now make the linter happy
1 parent b91a580 commit a6d5793

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

godump_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,6 @@ func (fd FriendlyDuration) String() string {
515515
}
516516

517517
func TestTheKitchenSink(t *testing.T) {
518-
519518
type Inner struct {
520519
ID int
521520
Notes []string
@@ -788,8 +787,8 @@ func TestFdump_WritesToWriter(t *testing.T) {
788787
func TestHexDumpRendering(t *testing.T) {
789788
input := []byte(`{"error":"kek","last_error":"not implemented","lol":"ok"}`)
790789
output := DumpStr(input)
791-
fmt.Println(output) // For debugging purposes
792790
output = stripANSI(output)
791+
Dump(input)
793792

794793
if !strings.Contains(output, "7b 22 65 72 72 6f 72") {
795794
t.Error("expected hex dump output missing")

0 commit comments

Comments
 (0)