summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/regressiontests/views/tests/debug.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/regressiontests/views/tests/debug.py b/tests/regressiontests/views/tests/debug.py
index 0b07b406d0..9457a2ee76 100644
--- a/tests/regressiontests/views/tests/debug.py
+++ b/tests/regressiontests/views/tests/debug.py
@@ -64,12 +64,12 @@ class ExceptionReporterTests(TestCase):
"A simple exception report can be generated"
try:
request = self.rf.get('/test_view/')
- raise KeyError("Can't find my keys")
- except KeyError:
+ raise ValueError("Can't find my keys")
+ except ValueError:
exc_type, exc_value, tb = sys.exc_info()
reporter = ExceptionReporter(request, exc_type, exc_value, tb)
html = reporter.get_traceback_html()
- self.assertIn('<h1>KeyError at /test_view/</h1>', html)
+ self.assertIn('<h1>ValueError at /test_view/</h1>', html)
self.assertIn('<pre class="exception_value">Can&#39;t find my keys</pre>', html)
self.assertIn('<th>Request Method:</th>', html)
self.assertIn('<th>Request URL:</th>', html)
@@ -82,12 +82,12 @@ class ExceptionReporterTests(TestCase):
def test_no_request(self):
"An exception report can be generated without request"
try:
- raise KeyError("Can't find my keys")
- except KeyError:
+ raise ValueError("Can't find my keys")
+ except ValueError:
exc_type, exc_value, tb = sys.exc_info()
reporter = ExceptionReporter(None, exc_type, exc_value, tb)
html = reporter.get_traceback_html()
- self.assertIn('<h1>KeyError</h1>', html)
+ self.assertIn('<h1>ValueError</h1>', html)
self.assertIn('<pre class="exception_value">Can&#39;t find my keys</pre>', html)
self.assertNotIn('<th>Request Method:</th>', html)
self.assertNotIn('<th>Request URL:</th>', html)