aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/signals/multiple_connections_gui_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/signals/multiple_connections_gui_test.py')
-rw-r--r--sources/pyside6/tests/signals/multiple_connections_gui_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside6/tests/signals/multiple_connections_gui_test.py b/sources/pyside6/tests/signals/multiple_connections_gui_test.py
index fe879e624..153ea1e81 100644
--- a/sources/pyside6/tests/signals/multiple_connections_gui_test.py
+++ b/sources/pyside6/tests/signals/multiple_connections_gui_test.py
@@ -48,6 +48,7 @@ except ImportError:
from helper.basicpyslotcase import BasicPySlotCase
from helper.usesqapplication import UsesQApplication
+
class MultipleSignalConnections(unittest.TestCase):
'''Base class for multiple signal connection testing'''
@@ -87,7 +88,7 @@ if hasQtGui:
def testSpinBoxValueChanged(self):
"""Multiple connections to QSpinBox.valueChanged(int)"""
sender = QSpinBox()
- #FIXME if number of receivers if higher than 50, segfaults
+ # FIXME if number of receivers if higher than 50, segfaults
receivers = [BasicPySlotCase() for x in range(10)]
self.run_many(sender, 'valueChanged(int)', sender.setValue,
receivers, (1,))