Skip to content

Commit

Permalink
Loosen tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Dec 11, 2024
1 parent d983249 commit 992e172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automatic_tests/run_automatic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def run_regression_test(application, new_gold_standard, test_dir):
rel_diff = abs(
(float(gold_last_energy) - float(last_energy)) / float(gold_last_energy)
)
test_passed = rel_diff < 1.0e-5
test_passed = rel_diff < 1.0e-4

# Determine test result
test_result = (
Expand Down

0 comments on commit 992e172

Please sign in to comment.