Skip to content

Commit

Permalink
fix ids in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed May 1, 2024
1 parent 6e75673 commit bb66dee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ fn test_gmsh_output_quads() {
b.add_point(6, [0.0, 1.0, 1.0]);
b.add_point(7, [1.0, 1.0, 1.0]);
b.add_cell(0, vec![0, 2, 1, 3]);
b.add_cell(0, vec![0, 1, 4, 5]);
b.add_cell(0, vec![0, 4, 2, 6]);
b.add_cell(0, vec![1, 3, 5, 7]);
b.add_cell(0, vec![2, 6, 3, 7]);
b.add_cell(0, vec![4, 5, 6, 7]);
b.add_cell(1, vec![0, 1, 4, 5]);
b.add_cell(2, vec![0, 4, 2, 6]);
b.add_cell(3, vec![1, 3, 5, 7]);
b.add_cell(4, vec![2, 6, 3, 7]);
b.add_cell(5, vec![4, 5, 6, 7]);
let g = b.create_grid();
g.export_as_gmsh(String::from("_test_io_cube.msh"));
}
Expand Down

0 comments on commit bb66dee

Please sign in to comment.