diff options
| author | Aymeric Augustin | 2013-11-09 19:31:24 +0100 |
|---|---|---|
| committer | Aymeric Augustin | 2013-11-10 10:39:42 +0100 |
| commit | 53bf40f6374830bd6d106d92c00897c5b6e44e8a (patch) | |
| tree | 362cdc4c712a61af9b46464496250c8101d9de75 /tests/test_integration.py | |
| parent | 2816c6fa2a1613e5eeb7967cde0793019ce62feb (diff) | |
| download | django-debug-toolbar-53bf40f6374830bd6d106d92c00897c5b6e44e8a.tar.bz2 | |
Improve regression test added in 8525bfc7.
Refs #422.
Diffstat (limited to 'tests/test_integration.py')
| -rw-r--r-- | tests/test_integration.py | 7 |
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: |
