Skip to content

Commit 4469bd8

Browse files
committed
Correcting test files after rebasing.
1 parent 107390c commit 4469bd8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/list_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def test_reverse(self):
447447
self.assertEqual(u, u2)
448448

449449
self.assertRaises(TypeError, u.reverse, 42)
450-
'''
450+
451451
def test_clear(self):
452452
u = self.type2test([2, 3, 4])
453453
u.clear()

graalpython/com.oracle.graal.python.test/src/tests/test_list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ class MyInt(int):
303303
a = [1,2,3]
304304
a.remove(MyInt(2))
305305
self.assertEqual([1,3], a)
306+
306307
def test_insert_spec(self):
307308
a = [1,2]
308309
self.assertRaises(TypeError, a.insert, [1,2,3], 1)

0 commit comments

Comments
 (0)