Skip to content

Commit 2b6d5dc

Browse files
committed
Revert more format changes
1 parent e00b7a4 commit 2b6d5dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/test/test_array.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ def test_assignment(self):
13081308
self.assertEqual(a, array.array(self.typecode, [42, 1, 42, 3, 42, 5, 42, 7, 42, 9]))
13091309
a = array.array(self.typecode, range(10))
13101310
a[::-4] = array.array(self.typecode, [10]*3)
1311-
self.assertEqual(a, array.array(self.typecode, [0, 10, 2, 3, 4, 10, 6, 7, 8, 10]))
1311+
self.assertEqual(a, array.array(self.typecode, [0, 10, 2, 3, 4, 10, 6, 7, 8 ,10]))
13121312
a = array.array(self.typecode, range(4))
13131313
a[::-1] = a
13141314
self.assertEqual(a, array.array(self.typecode, [3, 2, 1, 0]))
@@ -1376,7 +1376,6 @@ def test_type_error(self):
13761376
with self.assertRaises(TypeError):
13771377
a[0] = 42.0
13781378

1379-
13801379
class Intable:
13811380
def __init__(self, num):
13821381
self._num = num

0 commit comments

Comments
 (0)