|
21 | 21 | FV2D_EXE = Path(__file__).parent.parent / "build" / "fv2d" |
22 | 22 | FV2D_TMP_DIR = Path(__file__).parent / "tmp_test_dir" # for improvement see : https://docs.pytest.org/en/stable/how-to/tmp_path.html |
23 | 23 | FV2D_TMP_DIR.mkdir(exist_ok=True) |
24 | | -TOLERANCE = 1e-5 |
| 24 | +TOLERANCE = 1e-4 |
25 | 25 |
|
26 | 26 |
|
27 | 27 | def run_problem(inifile: str) -> None: |
@@ -162,15 +162,15 @@ def test_gresho_vortex_fslp_regression() -> None: |
162 | 162 |
|
163 | 163 | def test_h84_hll_regression() -> None: |
164 | 164 | """Test the H84 test with the HLL Riemann solver against reference data.""" |
165 | | - setup_test("h84", "hll", "hydro") |
| 165 | + setup_test("H84", "hll", "hydro") |
166 | 166 |
|
167 | 167 | def test_h84_hllc_regression() -> None: |
168 | 168 | """Test the H84 test with the HLLC Riemann solver against reference data.""" |
169 | | - setup_test("h84", "hllc", "hydro") |
| 169 | + setup_test("H84", "hllc", "hydro") |
170 | 170 |
|
171 | 171 | def test_h84_fslp_regression() -> None: |
172 | 172 | """Test the H84 test with the FSLP Riemann solver against reference data.""" |
173 | | - setup_test("h84", "fslp", "hydro") |
| 173 | + setup_test("H84", "fslp", "hydro") |
174 | 174 |
|
175 | 175 | # ===================================================================== |
176 | 176 | # Kelvin-Helmholtz regression tests |
|
0 commit comments