From feacb1c4c9a16990faa939166165c6d0b98091fa Mon Sep 17 00:00:00 2001 From: Hannah Town Date: Fri, 16 Oct 2020 14:29:49 -0400 Subject: [PATCH] Fix typo in test/sphere_test.py --- tests/sphere_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sphere_test.py b/tests/sphere_test.py index f00331d..254ad86 100644 --- a/tests/sphere_test.py +++ b/tests/sphere_test.py @@ -786,7 +786,7 @@ def testBasic(self): self.assertEqual(LineInterval(99, 100), empty.union(LineInterval(99, 100))) self.assertTrue( - LineInterval(5, 3).union(LineInterval(0, -2).is_empty())) + LineInterval(5, 3).union(LineInterval(0, -2)).is_empty()) self.assertTrue( LineInterval(0, -2).union(LineInterval(5, 3)).is_empty()) self.assertEqual(unit, unit.union(unit))