[svn r58013] bah, forgot that helper uses fnmatch-style matching, not regular expression

--HG--
branch : trunk
This commit is contained in:
hpk 2008-09-09 19:15:37 +02:00
parent 05f2d6441d
commit 2bac2ed175
1 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@ class TestPyTest(AcceptBase):
""")
result = self.runpytest(p1)
assert_lines_contain_lines(result.outlines, [
".*test_fail.py F",
"*test_fail.py F",
"====* FAILURES *====",
"____*____",
"",
@ -242,7 +242,7 @@ class TestPyTest(AcceptBase):
""")
result = self.runpytest(p1)
assert_lines_contain_lines(result.outlines, [
".*test_one.py .F",
"*test_one.py .F",
"====* FAILURES *====",
"____*____",
"*test_one.py:8: ValueError",