aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/samplebinding/pen_test.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-07-02 15:18:12 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-07-02 15:18:12 +0200
commit08b0fd0bca56c8a6c7fb0b4ca3837e800b98736d (patch)
tree8cc07ff2cced7e253f0605927ee5c2143d0ca4cf /sources/shiboken2/tests/samplebinding/pen_test.py
parent023fc0b747460b0e4f30d5b38961bb53dcfdde3c (diff)
parentbdb6f68fd65537d6bd3f6e2e896a8471a81a9279 (diff)
Merge remote-tracking branch 'origin/5.14' into 5.14.2
Diffstat (limited to 'sources/shiboken2/tests/samplebinding/pen_test.py')
-rw-r--r--sources/shiboken2/tests/samplebinding/pen_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/shiboken2/tests/samplebinding/pen_test.py b/sources/shiboken2/tests/samplebinding/pen_test.py
index 408871bb3..89abf4d54 100644
--- a/sources/shiboken2/tests/samplebinding/pen_test.py
+++ b/sources/shiboken2/tests/samplebinding/pen_test.py
@@ -63,6 +63,8 @@ class TestPen(unittest.TestCase):
def testPenWithIntConvertedToColor(self):
pen = Pen(1)
self.assertEqual(pen.ctorType(), Pen.ColorCtor)
+ pen.drawLine(0, 0, 5, 5)
+
if __name__ == '__main__':
unittest.main()