[cu2quPen_test] Remove redundant test

This commit is contained in:
Behdad Esfahbod 2023-02-18 09:10:32 -07:00
parent f726ac6bbb
commit f32df5a418

View File

@ -203,19 +203,6 @@ class TestCu2QuPen(unittest.TestCase, _TestPenMixin):
],
)
def test_addComponent(self):
pen = DummyPen()
quadpen = Cu2QuPen(pen, MAX_ERR)
quadpen.addComponent("a", (1, 2, 3, 4, 5.0, 6.0))
# components are passed through without changes
self.assertEqual(
str(pen).splitlines(),
[
"pen.addComponent('a', (1, 2, 3, 4, 5.0, 6.0))",
],
)
class TestCu2QuPointPen(unittest.TestCase, _TestPenMixin):
def __init__(self, *args, **kwargs):