From: Stephen Finucane Date: Thu, 18 Feb 2016 15:59:02 +0000 (+0000) Subject: tests: Remove check for 'tbody' X-Git-Tag: v1.1.0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50e3e8b2a6a5f78ae0afa23f4bc86f75326bc692;p=thirdparty%2Fpatchwork.git 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 --- diff --git a/patchwork/tests/test_list.py b/patchwork/tests/test_list.py index 0cc33fcf..1139a348 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):