Skip to content

Commit

Permalink
Fix xpath selectors in test that fails with libxml2 >= 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
menesis committed Apr 24, 2013
1 parent 3e006c3 commit fce6b36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/z3c/form/group.txt
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ happens, if errors happen inside and outside a group?
>>> print(testing.render(add, './/xmlns:i'))
<i>There were some errors.</i>

>>> print(testing.render(add, './/xmlns:ul[1]'))
>>> print(testing.render(add, './/xmlns:ul'))
<ul>
<li>
Last Name:
Expand Down Expand Up @@ -828,7 +828,7 @@ invalid object for the test missing input errors:
>>> print(testing.render(edit, './/xmlns:i'))
<i >There were some errors.</i>

>>> print(testing.render(edit, './/xmlns:fieldset[1]/xmlns:ul'))
>>> print(testing.render(edit, './/xmlns:fieldset/xmlns:ul'))
<ul>
<li>
License:
Expand Down Expand Up @@ -985,7 +985,7 @@ Now test the error handling if just one missing value is given in a group:
>>> print(testing.render(edit, './/xmlns:i'))
<i >There were some errors.</i>

>>> print(testing.render(edit, './/xmlns:fieldset[1]/xmlns:ul'))
>>> print(testing.render(edit, './/xmlns:fieldset/xmlns:ul'))
<ul>
<li>
Last Name:
Expand Down

0 comments on commit fce6b36

Please sign in to comment.