Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rthellend committed Mar 10, 2024
1 parent 8206686 commit 445dfe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func TestBlobs(t *testing.T) {
t.Fatalf("r.Seek(5, io.SeekStart) failed: %v", err)
}
if off, err = r.Seek(10, io.SeekCurrent); err != nil {
t.Fatalf("r.Seek(5, io.SeekCurrent) failed: %v", err)
t.Fatalf("r.Seek(10, io.SeekCurrent) failed: %v", err)
}
if want, got := int64(15), off; want != got {
t.Errorf("Unexpected seek offset. Want %d, got %d", want, got)
Expand Down

0 comments on commit 445dfe8

Please sign in to comment.