diff --git a/python/test/pyCone_TEST.py b/python/test/pyCone_TEST.py index 8eb4d422e..e36e65f63 100644 --- a/python/test/pyCone_TEST.py +++ b/python/test/pyCone_TEST.py @@ -28,7 +28,7 @@ class ConeTEST(unittest.TestCase): def test_default_construction(self): cone = Cone() - self.assertEqual(math.pi * math.pow(0.5, 2) * 1.0, + self.assertEqual(math.pi * math.pow(0.5, 2) * 1.0 / 3.0, cone.shape().volume()) self.assertEqual(0.5, cone.radius())