remove the unused return value of fnmatch_lines

--HG--
branch : trunk
This commit is contained in:
Benjamin Peterson
2010-04-28 17:12:38 -05:00
parent f2be437daa
commit d93016d85f
13 changed files with 41 additions and 42 deletions

View File

@@ -310,7 +310,7 @@ def test_runtest_in_module_ordering(testdir):
del item.function.mylist
""")
result = testdir.runpytest(p1)
assert result.stdout.fnmatch_lines([
result.stdout.fnmatch_lines([
"*2 passed*"
])