Skip to content

Commit 040817a

Browse files
committed
Remove unneeded parenthesis
1 parent d2a1345 commit 040817a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sys/stm_tests.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ struct
245245
(* workaround for dir-to-empty-target-dir https://github.com/ocaml/ocaml/issues/12073 *)
246246
if Sys.win32 && ocaml_version <= (5,0) && path_is_an_empty_dir fs new_path then fs else
247247
(* workaround for dir-to-file https://github.com/ocaml/ocaml/issues/12073 *)
248-
if (Sys.win32 && ocaml_version <= (5,0) && path_is_a_file fs new_path) then
248+
if Sys.win32 && ocaml_version <= (5,0) && path_is_a_file fs new_path then
249249
(match Model.separate_path new_path with
250250
| None -> fs
251251
| Some (new_path_pref, new_name) ->

0 commit comments

Comments
 (0)