Correcting implementation based on pull request feed back

This commit is contained in:
David Diaz
2015-08-21 14:31:20 -06:00
parent 24212fd97f
commit 2ddbac1f98
5 changed files with 16 additions and 15 deletions

View File

@@ -554,9 +554,8 @@ def test_unicode_issue368(testdir):
def test_record_property(testdir):
testdir.makepyfile("""
from pytest import record_property
def test_record():
record_property("foo", "<1");
def test_record(record_xml_property):
record_xml_property("foo", "<1");
""")
result, dom = runandparse(testdir)
node = dom.getElementsByTagName("testsuite")[0]