From fc642d7eb09599d665b715324b5a18be5a9b9532 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Thu, 14 Dec 2023 10:35:46 -0500 Subject: [PATCH] python/tests/tst_importModule.py - remove QIntList from symbols list QIntList symbol was removed long ago. fixes the test --- python/tests/tst_importModule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/tst_importModule.py b/python/tests/tst_importModule.py index 7c05a239..45b8ca8e 100644 --- a/python/tests/tst_importModule.py +++ b/python/tests/tst_importModule.py @@ -29,7 +29,7 @@ def test_importModules(self): 'DateTimeGrid', 'DateTimeScaleFormatter', 'ForwardingProxyModel', 'GraphicsScene', 'GraphicsView', 'ItemDataRole', 'ItemDelegate', 'ItemType', 'Legend', 'ListViewRowController', 'ProxyModel', - 'QIntList', 'Span', 'StyleOptionGanttItem', 'View'] + 'Span', 'StyleOptionGanttItem', 'View'] for symbol in symbols: self.assertIn(symbol, moduleSymbols)