aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/container_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/container_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/container_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/pysidetest/container_test.py b/sources/pyside6/tests/pysidetest/container_test.py
index 68c3638cd..c83e1f26c 100644
--- a/sources/pyside6/tests/pysidetest/container_test.py
+++ b/sources/pyside6/tests/pysidetest/container_test.py
@@ -44,13 +44,13 @@ class ContainerTestTest(unittest.TestCase):
self.assertEqual(sort_values(m2), EXPECTED_DICT)
def testList(self):
- l1 = ContainerTest.createList();
+ l1 = ContainerTest.createList()
self.assertEqual(l1, EXPECTED_LIST)
l2 = ContainerTest.passThroughList(l1)
self.assertEqual(l2, EXPECTED_LIST)
def testSet(self):
- s1 = ContainerTest.createSet(); # Order is not predictable
+ s1 = ContainerTest.createSet() # Order is not predictable
s2 = ContainerTest.passThroughSet(s1)
self.assertEqual(sorted(list(s1)), sorted(list(s2)))