Skip to content

Commit c851219

Browse files
committedApr 28, 2024··
Or not ... the fuck?
1 parent 9e04858 commit c851219

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎toml_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ func TestSize(t *testing.T) {
140140
return err
141141
}
142142
if l := len(data); l > 1024 {
143-
t.Errorf("larger than 1K: %s (%fK)", path, float64(l)/1024)
143+
data, _ := fs.ReadFile(EmbeddedTests(), path)
144+
t.Errorf("larger than 1K: %s (%fK)\n%v", path, float64(l)/1024, data)
144145
}
145146
return nil
146147
})

0 commit comments

Comments
 (0)
Please sign in to comment.