Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaydubina committed Feb 22, 2024
1 parent 1acdb04 commit ecda09a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws_s3_reader_seeker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func TestS3ReadSeeker_NotFoundObject(t *testing.T) {
t.Errorf("expected error, got nil")
}

if _, err := io.ReadAll(r); err == nil {
t.Errorf("expected error, got nil")
if _, err := io.ReadAll(r); err != nil {
t.Errorf("expected no error")
}
}

0 comments on commit ecda09a

Please sign in to comment.