From 3442e77798cdfa61b9567faa3119c24b5586e3f7 Mon Sep 17 00:00:00 2001 From: Adam Urbanczyk Date: Fri, 1 Sep 2017 23:27:11 +0200 Subject: [PATCH] Fixed testFrontReference --- tests/TestCadQuery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestCadQuery.py b/tests/TestCadQuery.py index 18181368..f6497d07 100644 --- a/tests/TestCadQuery.py +++ b/tests/TestCadQuery.py @@ -223,8 +223,8 @@ class TestCadQuery(BaseTest): self.saveModel(r) #the result should have 7 faces self.assertEqual(7,r.faces().size() ) - self.assertEqual(type(r.val()), Solid) - self.assertEqual(type(r.first().val()),Solid) + self.assertEqual(type(r.val()), Compound) + self.assertEqual(type(r.first().val()),Compound) def testRotate(self): """Test solid rotation at the CQ object level."""