From 4302e3276e3d367cb125b72f99e3cb25c24016d8 Mon Sep 17 00:00:00 2001 From: Aaron Ayres Date: Thu, 6 May 2021 12:08:46 -0500 Subject: [PATCH] pass a value in appropriate range --- mayavi/tests/test_optional_collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayavi/tests/test_optional_collection.py b/mayavi/tests/test_optional_collection.py index 31cd6767a..99cbd79ef 100644 --- a/mayavi/tests/test_optional_collection.py +++ b/mayavi/tests/test_optional_collection.py @@ -66,7 +66,7 @@ def check(self,coll): self.assertEqual(np.allclose(r, (6.09,6.09), atol=1.01e-03), True) # Adding a contour should create the appropriate output in # the collection. - c.contours.append(200) + c.contours.append(10) self.assertEqual(np.allclose(r, [6.09,6.09], atol=1.01e-03), True) # the collection's output should be that of the normals. self.assertEqual(coll.outputs[0] is n.outputs[0],True)