diff options
Diffstat (limited to 'Lib/test/test_pprint.py')
-rw-r--r-- | Lib/test/test_pprint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index c281872..f7f6ac6 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -33,8 +33,8 @@ class dict3(dict): class QueryTestCase(unittest.TestCase): def setUp(self): - self.a = range(100) - self.b = range(200) + self.a = list(range(100)) + self.b = list(range(200)) self.a[-12] = self.b def test_basic(self): |