Skip to content
Snippets Groups Projects
Commit 4ca2d9ab authored by Virgile Prevosto's avatar Virgile Prevosto Committed by Andre Maroneze
Browse files

[ptests] fix typo in comment

parent 90e200d2
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,7 @@ let unlink ?(silent = true) file = ...@@ -163,7 +163,7 @@ let unlink ?(silent = true) file =
Unix.unlink file Unix.unlink file
with with
| Unix_error _ when silent -> () | Unix_error _ when silent -> ()
| Unix_error (ENOENT,_,_) -> () (* Ignore "Not such file or directory" *) | Unix_error (ENOENT,_,_) -> () (* Ignore "No such file or directory" *)
| Unix_error _ as e -> output_unix_error e | Unix_error _ as e -> output_unix_error e
let is_file_empty_or_nonexisting filename = let is_file_empty_or_nonexisting filename =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment