Skip to content

Commit faf79d4

Browse files
committed
fix: fix lint issue
1 parent 5547af4 commit faf79d4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Lib/test/test_queue.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,13 +1066,13 @@ def test_equality(self):
10661066
# Test that SimpleQueue uses object identity, not value equality
10671067
q1 = self.type2test()
10681068
q2 = self.type2test()
1069-
1069+
10701070
# Different instances should not be equal
10711071
self.assertNotEqual(q1, q2)
1072-
1072+
10731073
# Same instance should be equal to itself
10741074
self.assertEqual(q1, q1)
1075-
1075+
10761076
# Even with same content, instances should not be equal
10771077
q1.put('test')
10781078
q2.put('test')
@@ -1096,13 +1096,13 @@ def test_equality(self):
10961096
# Test that SimpleQueue uses object identity, not value equality
10971097
q1 = self.type2test()
10981098
q2 = self.type2test()
1099-
1099+
11001100
# Different instances should not be equal
11011101
self.assertNotEqual(q1, q2)
1102-
1102+
11031103
# Same instance should be equal to itself
11041104
self.assertEqual(q1, q1)
1105-
1105+
11061106
# Even with same content, instances should not be equal
11071107
q1.put('test')
11081108
q2.put('test')

0 commit comments

Comments
 (0)