Skip to content

Commit faeaf4d

Browse files
committed
Does this fix coverage??
1 parent 3b17c5b commit faeaf4d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/fe/fe_lagrange_shape_verification_test.C

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ public:
3232
for(auto o : make_range(1, 4))
3333
for(auto i : make_range(o + 1))
3434
{
35-
LIBMESH_ASSERT_FP_EQUAL(fe_lagrange_1D_shape(Order(o), i, xi),
36-
fe_lagrange_1D_any_shape(Order(o), i, xi), tol);
35+
Real classic = fe_lagrange_1D_shape(Order(o), i, xi);
36+
Real nuno = fe_lagrange_1D_any_shape(Order(o), i, xi);
37+
LIBMESH_ASSERT_FP_EQUAL(classic,
38+
nuno, tol);
3739
LIBMESH_ASSERT_FP_EQUAL(fe_lagrange_1D_shape_deriv(Order(o), i, 0, xi),
3840
fe_lagrange_1D_any_shape_deriv(Order(o), i, 0, xi), tol);
3941
LIBMESH_ASSERT_FP_EQUAL(fe_lagrange_1D_shape_second_deriv(Order(o), i, 0, xi),

0 commit comments

Comments
 (0)