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-18 13:44:53 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-05-18 13:44:53 +0300
commitf4eae747f991e38fb462828ce7e0d2778fc0f17a (patch)
tree0fb5ec33cfba8cf8fec1aea2e308427cb15687bf /tests
parent1f9eb7e2c66bf77e13617d7f64b641ff3497ac72 (diff)
Tests: Remove threshold param from physics ocean mesh test
This was not the reason for the test failure on macOS arm64.
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 1f923f4f783..40227d3d8d7 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', {})], threshold=1e-1),
+ [ModifierSpec('Ocean', 'OCEAN', {})]),
]
ocean_test = RunTest(test)