From 105ed6dcaa3ab46b5eaa16bb962ab0d08448c272 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 5 Feb 2010 22:57:46 +0100 Subject: [PATCH] fix this test --HG-- branch : trunk --- testing/plugin/test_pytest_terminal.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testing/plugin/test_pytest_terminal.py b/testing/plugin/test_pytest_terminal.py index da6f2bb0c..98b367d88 100644 --- a/testing/plugin/test_pytest_terminal.py +++ b/testing/plugin/test_pytest_terminal.py @@ -591,9 +591,10 @@ def test_trace_reporting(testdir): @py.test.mark.nodist def test_show_funcarg(testdir, option): - result = testdir.runpytest(*option._getcmdargs()) + args = option._getcmdargs() + ["--funcargs"] + result = testdir.runpytest(*args) assert result.stdout.fnmatch_lines([ "*tmpdir*", "*temporary directory*", ] - ]) + )