aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtCore
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/tests/QtCore')
-rw-r--r--sources/pyside2/tests/QtCore/qmetaobject_test.py2
-rw-r--r--sources/pyside2/tests/QtCore/qobject_connect_notify_test.py2
-rw-r--r--sources/pyside2/tests/QtCore/qslot_object_test.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/sources/pyside2/tests/QtCore/qmetaobject_test.py b/sources/pyside2/tests/QtCore/qmetaobject_test.py
index 73ab81c7c..81a3e7015 100644
--- a/sources/pyside2/tests/QtCore/qmetaobject_test.py
+++ b/sources/pyside2/tests/QtCore/qmetaobject_test.py
@@ -60,7 +60,7 @@ class qmetaobject_test(unittest.TestCase):
f = QFile()
fm = f.metaObject()
self.assertEqual(m.methodCount(), fm.methodCount())
- """
+ """
def test_DynamicSlotSignal(self):
o = DynObject()
diff --git a/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py b/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py
index 68f79161d..fdd71957b 100644
--- a/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py
+++ b/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py
@@ -59,7 +59,7 @@ class TestQObjectConnectNotify(UsesQCoreApplication):
'''Test case for QObject::connectNotify'''
def setUp(self):
UsesQCoreApplication.setUp(self)
- self.called = False
+ self.called = False
def tearDown(self):
UsesQCoreApplication.tearDown(self)
diff --git a/sources/pyside2/tests/QtCore/qslot_object_test.py b/sources/pyside2/tests/QtCore/qslot_object_test.py
index cfb9e7883..b8d5513ff 100644
--- a/sources/pyside2/tests/QtCore/qslot_object_test.py
+++ b/sources/pyside2/tests/QtCore/qslot_object_test.py
@@ -42,7 +42,7 @@ class objTest(QtCore.QObject):
def slot(self):
global qApp
-
+
self.ok = True
qApp.quit()
@@ -51,8 +51,8 @@ class objTest(QtCore.QObject):
class slotTest(unittest.TestCase):
def quit_app(self):
global qApp
-
- qApp.quit()
+
+ qApp.quit()
def testBasic(self):
global qApp