summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen.finucane@intel.com>2016-02-18 15:59:02 +0000
committerStephen Finucane <stephen.finucane@intel.com>2016-02-18 21:13:15 +0000
commit50e3e8b2a6a5f78ae0afa23f4bc86f75326bc692 (patch)
treea470be2eef40bcb631fbe48d324850dfc6b9468e
parent99b4a5c8e57459f5407c94a4b45fa06a199afadc (diff)
downloadpatchwork-50e3e8b2a6a5f78ae0afa23f4bc86f75326bc692.tar
patchwork-50e3e8b2a6a5f78ae0afa23f4bc86f75326bc692.tar.gz
tests: Remove check for 'tbody'
As part of 'f8cc68', the response for the patch list page changed slightly. This means one of the things we were checking in a test is no longer valid. Remove this check. Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
-rw-r--r--patchwork/tests/test_list.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/patchwork/tests/test_list.py b/patchwork/tests/test_list.py
index 0cc33fc..1139a34 100644
--- a/patchwork/tests/test_list.py
+++ b/patchwork/tests/test_list.py
@@ -40,7 +40,6 @@ class EmptyPatchListTest(TestCase):
url = reverse('patch-list', kwargs={'project_id': project.linkname})
response = self.client.get(url)
self.assertContains(response, 'No patches to display')
- self.assertNotContains(response, 'tbody')
class PatchOrderTest(TestCase):