Skip to content

Commit 6f2ffa0

Browse files
committed
xapi-stdext-threads: fix ipq test
The out of bounds test fails when updating libraries Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>
1 parent 5c387c4 commit 6f2ffa0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • ocaml/libs/xapi-stdext/lib/xapi-stdext-threads

ocaml/libs/xapi-stdext/lib/xapi-stdext-threads/ipq_test.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let test_out_of_index () =
1919
let q = Ipq.create 10 0 in
2020
Ipq.add q {Ipq.ev= 123; Ipq.time= Mtime_clock.elapsed ()} ;
2121
let is_oob = function
22-
| Invalid_argument s when String.ends_with ~suffix:" out of bounds" s ->
22+
| Invalid_argument s when String.ends_with ~suffix:" out of bounds" s ->
2323
true
2424
| _ ->
2525
false

0 commit comments

Comments
 (0)