Skip to content

Commit 92f23c0

Browse files
authored
fix: adjust test for other sdo list page (#9929)
1 parent 7b3e30b commit 92f23c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ietf/liaisons/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def test_list_other_sdo(self):
119119
r = self.client.get(url)
120120
q = PyQuery(r.content)
121121
self.assertEqual(len(q("h1")), 2)
122-
first_td_elements_text = [e.text for e in q("tr").find("td:first-child")]
122+
first_td_elements_text = [e.text for e in q("tr").find("td:first-child a")]
123123
self.assertEqual(first_td_elements_text, ["first", "second", "third"])
124124

125125
class UnitTests(TestCase):

0 commit comments

Comments
 (0)