summaryrefslogtreecommitdiff
path: root/Lib/test/test_wsgiref.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-04-07 05:43:42 +0000
committerMartin v. Löwis <martin@v.loewis.de>2008-04-07 05:43:42 +0000
commit8ac64c88ff09e313c1da98df56956e53370502b6 (patch)
tree0d1b14fff04d16378716c8061e52b02a3d86f397 /Lib/test/test_wsgiref.py
parent33e43393dfe1f39d605d0f4db4f909612bbe794e (diff)
downloadcpython-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-xLib/test/test_wsgiref.py2
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'>"
)