From f0dad527eeb34613cf26e48c7f9660c00f319d2c Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 2 Apr 2015 19:46:43 +0000 Subject: [PATCH] Updated a group test to match the facelift DOM. - Legacy-Id: 9359 --- ietf/group/tests_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/group/tests_info.py b/ietf/group/tests_info.py index f2f53311f..d611fcced 100644 --- a/ietf/group/tests_info.py +++ b/ietf/group/tests_info.py @@ -167,7 +167,7 @@ class GroupPagesTests(TestCase): self.client.login(username="secretary", password="secretary+password") r = self.client.get(url) q = PyQuery(r.content) - self.assertTrue(any([draft2.name in x.attrib['href'] for x in q('table.ietf-doctable td.addtolist a')])) + self.assertTrue(any([draft2.name in x.attrib['href'] for x in q('table td a.community-list-add-remove-doc')])) # test the txt version too while we're at it url = urlreverse('ietf.group.info.group_documents_txt', kwargs=dict(group_type=group.type_id, acronym=group.acronym))