From 259edb965b13064243f5e91541d98e2cac0a25a0 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Fri, 10 Jun 2022 23:26:21 -0400 Subject: [PATCH] try to fix test --- src/core/CCString.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CCString.ml b/src/core/CCString.ml index 3b837ab00..4bf9bbc8e 100644 --- a/src/core/CCString.ml +++ b/src/core/CCString.ml @@ -1176,7 +1176,7 @@ let of_hex s = try Some (of_hex_exn s) with Invalid_argument _ -> None Q.(string) (fun s -> \ of_hex_exn (to_hex s) = s) Q.(string) (fun s -> \ - String.for_all (function 'A'..'F'|'a'..'f'|'0'..'9' -> true | _ -> false) @@ to_hex s) + CCString.for_all (function 'A'..'F'|'a'..'f'|'0'..'9' -> true | _ -> false) @@ to_hex s) *) let pp_buf buf s =