aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_integration.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_integration.py')
-rw-r--r--tests/test_integration.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py
index 41206fc..875efbe 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -139,13 +139,6 @@ class DebugToolbarIntegrationTestCase(TestCase):
self.assertContains(response, 'LÀTÍN') # template
self.assertContains(response, 'djDebug') # toolbar
- def test_non_ascii_bytes_in_db_params(self):
- response = self.client.get('/non_ascii_bytes_in_db_params/')
- if six.PY3:
- self.assertContains(response, 'djàngó')
- else:
- self.assertContains(response, 'dj\\xe0ng\\xf3')
-
def test_non_ascii_session(self):
response = self.client.get('/set_session/')
if six.PY3: