Skip to content

Commit f54a627

Browse files
committed
Fix index assignment in edge-vertex collision stencil coefficient tests
1 parent df3db63 commit f54a627

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/tests/candidates/test_coefficients.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ TEST_CASE("Edge-vertex collision stencil coeffs.", "[ev][stencil][coeffs]")
3737

3838
SECTION("default") { }
3939
SECTION("random") { V.row(2).setRandom(); }
40-
SECTION("e0") { V(0, 2) = -2; }
41-
SECTION("e1") { V(0, 2) = 2; }
40+
SECTION("e0") { V(2, 0) = -2; }
41+
SECTION("e1") { V(2, 0) = 2; }
4242

4343
Eigen::MatrixXi E(1, 2), F;
4444
E << 0, 1;

0 commit comments

Comments
 (0)