Skip to content

Commit

Permalink
Fix GPU wall distance unit test (#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf authored Sep 24, 2024
1 parent d9a2066 commit 8fd9814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit_tests/kernels/UnitTestWallDistElem.C
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ TEST_F(WallDistKernelHex8Mesh, NGP_wall_dist)

namespace gold_values = hex8_golds::wall_dist_default;
unit_test_kernel_utils::expect_all_near(helperObjs.linsys->rhs_, 0.125);
unit_test_kernel_utils::expect_all_near(
unit_test_kernel_utils::expect_all_near<8>(
helperObjs.linsys->lhs_, gold_values::lhs);
}

Expand Down Expand Up @@ -250,6 +250,6 @@ TEST_F(WallDistKernelHex8Mesh, NGP_wall_dist_shifted)

namespace gold_values = hex8_golds::wall_dist_lumped;
unit_test_kernel_utils::expect_all_near(helperObjs.linsys->rhs_, 0.125);
unit_test_kernel_utils::expect_all_near(
unit_test_kernel_utils::expect_all_near<8>(
helperObjs.linsys->lhs_, gold_values::lhs);
}

0 comments on commit 8fd9814

Please sign in to comment.