Skip to content

Commit

Permalink
Make test_repr.py pass again after repr(range(1)) changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed May 21, 2007
1 parent 813b0e5 commit 3353a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_repr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)')

Expand Down

0 comments on commit 3353a2e

Please sign in to comment.