Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2021-05-17 22:13:35 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-05-17 22:13:35 +0300
commitc9afea5bbf957dd88fcd5a62aeea10a43399b994 (patch)
tree552e280d156aee91ee577fd42e56883d94ec5d51 /tests
parent43046d82b7d18398027afb6b92ea0be7588f08a8 (diff)
Tests: Added threshold to physics ocean mesh test
The physics_ocean test is currently failing on macOS arm. This is one attempt to fix this issue.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/physics_ocean.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/physics_ocean.py b/tests/python/physics_ocean.py
index 40227d3d8d7..96c765754b8 100644
--- a/tests/python/physics_ocean.py
+++ b/tests/python/physics_ocean.py
@@ -31,7 +31,7 @@ def main():
test = [
# World coordinates of test and expected object should be same.
MeshTest("PlaneOcean", "testObjPlaneOcean", "expObjPlaneOcean",
- [ModifierSpec('Ocean', 'OCEAN', {})]),
+ [ModifierSpec('Ocean', 'OCEAN', {})], threshold=1e-3),
]
ocean_test = RunTest(test)