mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-05 19:00:31 -05:00
fix test
This commit is contained in:
parent
8c224e42fd
commit
1b3ddb7adf
2 changed files with 2 additions and 3 deletions
|
|
@ -768,10 +768,10 @@ q
|
|||
;;
|
||||
|
||||
t @@ fun () -> take_drop_while (fun _ -> true) [] = ([], []);;
|
||||
t @@ fun () -> take_drop_while (fun _ -> true) (1 -- 10) = ([], 1 -- 10);;
|
||||
t @@ fun () -> take_drop_while (fun _ -> true) (1 -- 10) = (1 -- 10, []);;
|
||||
|
||||
t @@ fun () ->
|
||||
take_drop_while (fun _ -> true) (1 -- 300_000) = ([], 1 -- 300_000)
|
||||
take_drop_while (fun _ -> true) (1 -- 300_000) = (1 -- 300_000, [])
|
||||
;;
|
||||
|
||||
eq ~printer:Q.Print.(option (list int)) (Some [ 2; 3 ]) (tail_opt [ 1; 2; 3 ]);;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ module Mixset = struct
|
|||
end
|
||||
|
||||
module Mixtbl = struct
|
||||
open CCFun
|
||||
open CCMixtbl;;
|
||||
|
||||
t @@ fun () ->
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue