Skip to content

Commit 6f93600

Browse files
committed
[Test][CI] Corrects H84 typo and lowers tolerance threshold
1 parent 98c7700 commit 6f93600

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_no_regression.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
FV2D_EXE = Path(__file__).parent.parent / "build" / "fv2d"
2222
FV2D_TMP_DIR = Path(__file__).parent / "tmp_test_dir" # for improvement see : https://docs.pytest.org/en/stable/how-to/tmp_path.html
2323
FV2D_TMP_DIR.mkdir(exist_ok=True)
24-
TOLERANCE = 1e-5
24+
TOLERANCE = 1e-4
2525

2626

2727
def run_problem(inifile: str) -> None:
@@ -162,15 +162,15 @@ def test_gresho_vortex_fslp_regression() -> None:
162162

163163
def test_h84_hll_regression() -> None:
164164
"""Test the H84 test with the HLL Riemann solver against reference data."""
165-
setup_test("h84", "hll", "hydro")
165+
setup_test("H84", "hll", "hydro")
166166

167167
def test_h84_hllc_regression() -> None:
168168
"""Test the H84 test with the HLLC Riemann solver against reference data."""
169-
setup_test("h84", "hllc", "hydro")
169+
setup_test("H84", "hllc", "hydro")
170170

171171
def test_h84_fslp_regression() -> None:
172172
"""Test the H84 test with the FSLP Riemann solver against reference data."""
173-
setup_test("h84", "fslp", "hydro")
173+
setup_test("H84", "fslp", "hydro")
174174

175175
# =====================================================================
176176
# Kelvin-Helmholtz regression tests

0 commit comments

Comments
 (0)