Skip to content

Commit

Permalink
Fix the tests for macOS/arm64 (which has a 16k page size)
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate committed Feb 16, 2022
1 parent 0fd7865 commit 9ca9646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unix/test_lwt_bytes.ml
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ let suite = suite "lwt_bytes" [
end;

test "page_size" begin fun () ->
let sizes = [4096; 65536] in
let sizes = [4096; 16384; 65536] in
Lwt.return (List.mem Lwt_bytes.page_size sizes)
end;

Expand Down

0 comments on commit 9ca9646

Please sign in to comment.