Skip to content

Commit

Permalink
Or not ... the fuck?
Browse files Browse the repository at this point in the history
  • Loading branch information
arp242 committed Apr 28, 2024
1 parent 9e04858 commit c851219
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion toml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ func TestSize(t *testing.T) {
return err
}
if l := len(data); l > 1024 {
t.Errorf("larger than 1K: %s (%fK)", path, float64(l)/1024)
data, _ := fs.ReadFile(EmbeddedTests(), path)
t.Errorf("larger than 1K: %s (%fK)\n%v", path, float64(l)/1024, data)
}
return nil
})
Expand Down

0 comments on commit c851219

Please sign in to comment.