part: bspline: tests use copy instead of deepcopy

This commit is contained in:
looooo 2017-02-18 18:35:09 +01:00 committed by wmayer
parent 2b35bb3ae3
commit 48f9987172

View File

@ -82,7 +82,7 @@ class PartTestBSplineCurve(unittest.TestCase):
self.spline.getWeights()
def testSetters(self):
spline = copy.deepcopy(self.spline)
spline = copy.copy(self.spline)
spline.setKnot(1, 0.1)
spline.setPeriodic()
spline.setNotPeriodic()