We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad02f6f commit 33c173fCopy full SHA for 33c173f
testing/test_junitxml.py
@@ -1061,13 +1061,14 @@ def test_record(record_property, other):
1061
record_property("foo", "<1");
1062
"""
1063
)
1064
- result, dom = run_and_parse("-rwv")
+ result, dom = run_and_parse("-rw")
1065
node = dom.find_first_by_tag("testsuite")
1066
tnode = node.find_first_by_tag("testcase")
1067
psnode = tnode.find_first_by_tag("properties")
1068
pnodes = psnode.find_by_tag("property")
1069
pnodes[0].assert_attr(name="bar", value="1")
1070
pnodes[1].assert_attr(name="foo", value="<1")
1071
+ result.stdout.fnmatch_lines([" 1 passed "])
1072
1073
1074
def test_record_property_same_name(testdir, run_and_parse):
0 commit comments