mirror of https://github.com/python/cpython.git
Make test_repr.py pass again after repr(range(1)) changed.
This commit is contained in:
parent
813b0e5b6d
commit
3353a2ec47
|
@ -137,7 +137,7 @@ def test_builtin_function(self):
|
|||
|
||||
def test_range(self):
|
||||
eq = self.assertEquals
|
||||
eq(repr(range(1)), 'range(1)')
|
||||
eq(repr(range(1)), 'range(0, 1)')
|
||||
eq(repr(range(1, 2)), 'range(1, 2)')
|
||||
eq(repr(range(1, 4, 3)), 'range(1, 4, 3)')
|
||||
|
||||
|
|
Loading…
Reference in New Issue