Skip to content

Commit

Permalink
tracing mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ferh6t committed Nov 17, 2024
1 parent c9a30f9 commit 0b48f2d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,9 @@ func TestHarness(t *testing.T) {
mismatches = 10
t.Errorf("only showing first %d mismatches", mismatches)
}
for val, br := range ranges.ranges[:mismatches] {
for _, br := range ranges.ranges[:mismatches] {
t.Errorf("- mismatch from byte %d to %d", br.start, br.end)
wantPart := want[br.start:br.end]
t.Errorf("- mismatch from byte %v", val)
gotPart := got[br.start:br.end]
t.Errorf("want %q", wantPart)
t.Errorf("got %q", gotPart)
Expand Down

0 comments on commit 0b48f2d

Please sign in to comment.