From c35472a745fc8e890fff2b31bf2e3768316e005c Mon Sep 17 00:00:00 2001 From: Adam Urbanczyk Date: Fri, 1 Sep 2017 23:57:16 +0200 Subject: [PATCH] Fix testCylinderPlugin --- tests/TestCadQuery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCadQuery.py b/tests/TestCadQuery.py index f6497d07..57d79cec 100644 --- a/tests/TestCadQuery.py +++ b/tests/TestCadQuery.py @@ -153,7 +153,7 @@ class TestCadQuery(BaseTest): #now test. here we want weird workplane to see if the objects are transformed right s = Workplane(Plane(Vector((0,0,0)),Vector((1,-1,0)),Vector((1,1,0)))).rect(2.0,3.0,forConstruction=True).vertices() \ .cyl(0.25,0.5) - self.assertEquals(1,s.solids().size() ) + self.assertEquals(4,s.solids().size() ) self.saveModel(s) def testPolygonPlugin(self):