Skip to content

Commit

Permalink
try to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jun 11, 2022
1 parent 90a131b commit 259edb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CCString.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 259edb9

Please sign in to comment.