In #33 and #31 the tests fail on nightly.
The fix
- addcellset!(grid, "bottom", Set((1,2,3,4)))
+ addcellset!(grid, "bottom", OrderedSet((4, 2, 3, 1)))
in test/test_grid.jl#L15 solved this in the 2d tests. But didn't solve it for the later 3d tests.
Not sure where the randomness comes in though, but the tests seem to assume a specific order of operations whereas using Set doesn't guarantee this.
In #33 and #31 the tests fail on nightly.
The fix
in
test/test_grid.jl#L15solved this in the 2d tests. But didn't solve it for the later 3d tests.Not sure where the randomness comes in though, but the tests seem to assume a specific order of operations whereas using
Setdoesn't guarantee this.