diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-04-07 05:43:42 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-04-07 05:43:42 +0000 |
commit | 8ac64c88ff09e313c1da98df56956e53370502b6 (patch) | |
tree | 0d1b14fff04d16378716c8061e52b02a3d86f397 /Lib/test/test_wsgiref.py | |
parent | 33e43393dfe1f39d605d0f4db4f909612bbe794e (diff) | |
download | cpython-8ac64c88ff09e313c1da98df56956e53370502b6.tar.gz |
Bug #2565: The repr() of type objects now calls them 'class',
not 'type' - whether they are builtin types or not.
Diffstat (limited to 'Lib/test/test_wsgiref.py')
-rwxr-xr-x | Lib/test/test_wsgiref.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py index bcf6352063..c02f0af824 100755 --- a/Lib/test/test_wsgiref.py +++ b/Lib/test/test_wsgiref.py @@ -157,7 +157,7 @@ class IntegrationTests(TestCase): self.assertEqual( err.splitlines()[-2], "AssertionError: Headers (('Content-Type', 'text/plain')) must" - " be of type list: <type 'tuple'>" + " be of type list: <class 'tuple'>" ) |