aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/unicode_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/unicode_test.py')
-rw-r--r--sources/pyside6/tests/QtCore/unicode_test.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtCore/unicode_test.py b/sources/pyside6/tests/QtCore/unicode_test.py
index 1d3a729fa..18910be29 100644
--- a/sources/pyside6/tests/QtCore/unicode_test.py
+++ b/sources/pyside6/tests/QtCore/unicode_test.py
@@ -43,6 +43,7 @@ init_test_paths(False)
from PySide6.QtCore import QObject
from PySide6.QtCore import QByteArray
+
class UnicodeConversion(unittest.TestCase):
'''Test case for QString to/from Python Unicode conversion'''
@@ -53,17 +54,18 @@ class UnicodeConversion(unittest.TestCase):
pass
def testSetRegularStringRetrieveUnicode(self):
- #Set regular Python string retrieve unicode
+ # Set regular Python string retrieve unicode
obj = QObject()
obj.setObjectName('test')
self.assertEqual(obj.objectName(), 'test')
def testSetUnicodeRetrieveUnicode(self):
- #Set Python unicode string and retrieve unicode
+ # Set Python unicode string and retrieve unicode
obj = QObject()
obj.setObjectName('ümlaut')
self.assertEqual(obj.objectName(), 'ümlaut')
+
if __name__ == '__main__':
unittest.main()