Skip to content
Snippets Groups Projects
Commit d1d64adc authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

tests: gen_cells now has correct vtk cell-node order in 3D

parent 7e5c0cd7
No related branches found
No related tags found
1 merge request!286Add mask to Info object
......@@ -89,7 +89,7 @@ class TestGridTools(unittest.TestCase):
assert_array_equal(gen_cells((1,), order="F"), [[0]])
assert_array_equal(gen_cells((2,), order="F"), [[0, 1]])
assert_array_equal(gen_cells((2, 2, 2), order="F"), [[2, 3, 1, 0, 6, 7, 5, 4]])
assert_array_equal(gen_cells((2, 2, 2), order="F"), [[6, 7, 5, 4, 2, 3, 1, 0]])
# 0---1---2
# | | |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment