From 4ca2d9abccfc2c6647df22f83a2a6224c2e10fdf Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 30 Apr 2020 13:22:38 +0200
Subject: [PATCH] [ptests] fix typo in comment

---
 ptests/ptests.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ptests/ptests.ml b/ptests/ptests.ml
index 27af94c1569..aa521c40b17 100644
--- a/ptests/ptests.ml
+++ b/ptests/ptests.ml
@@ -163,7 +163,7 @@ let unlink ?(silent = true) file =
     Unix.unlink file
   with
   | 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
 
 let is_file_empty_or_nonexisting filename =
-- 
GitLab