Skip to content

Commit

Permalink
Fix running TIFF tests
Browse files Browse the repository at this point in the history
The incorrect equals were used: (==) where (=) was intended.
  • Loading branch information
serpent7776 committed Oct 13, 2024
1 parent ffeeba2 commit 2b5131e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Test_IO_TIFF.ml
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ let run_tiff_tests () =
]

let () =
if Sys.os_type == "Unix" then run_tiff_tests ()
if Sys.os_type = "Unix" then run_tiff_tests ()
else print_endline "Skipping TIFF tests on Windows systems"

0 comments on commit 2b5131e

Please sign in to comment.