Skip to content

Commit

Permalink
Fix bad tests error comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfx committed Jun 2, 2024
1 parent 600d037 commit 3018c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imagick/magick_wand_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func TestReadImageBlob(t *testing.T) {

mw.ReadImage(`logo:`)
blob, err := mw.GetImageBlob()
if err == nil {
if err != nil {
t.Fatal(err)
}

Expand Down

0 comments on commit 3018c77

Please sign in to comment.