Skip to content

Commit 529b460

Browse files
committed
fix acoustic tol
1 parent d14d1c3 commit 529b460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchain/mfc/test/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def compute_tolerance(self) -> float:
222222
tolerance = 1e-12 # Default
223223
if "Example" in self.trace.split(" -> "):
224224
tolerance = 1e-3
225-
if self.params.get("hypoelasticity", 'F') == 'T':
225+
elif self.params.get("hypoelasticity", 'F') == 'T':
226226
tolerance = 1e-7
227227
elif any(self.params.get(key, 'F') == 'T' for key in ['relax', 'ib', 'qbmm', 'bubbles']):
228228
tolerance = 1e-10

0 commit comments

Comments
 (0)