diff mbox

tests: Remove check for 'tbody'

Message ID 1455816898-13427-1-git-send-email-stephen.finucane@intel.com
State Accepted
Headers show

Commit Message

Stephen Finucane Feb. 18, 2016, 5:34 p.m. UTC
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>
---
 patchwork/tests/test_list.py | 1 -
 1 file changed, 1 deletion(-)

Comments

Stephen Finucane Feb. 24, 2016, 8:57 p.m. UTC | #1
On 18 Feb 17:34, Stephen Finucane wrote:
> 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>

Merged.
diff mbox

Patch

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):