summaryrefslogtreecommitdiff
path: root/testing/test_doctest.py
diff options
context:
space:
mode:
authorAndreas Zeidler <az@zitc.de>2013-03-21 01:03:59 +0100
committerAndreas Zeidler <az@zitc.de>2013-03-21 01:03:59 +0100
commitda3b42ce46389f9cbac81f3eabf3974e9ce56466 (patch)
treed30c5e4792e7e37f5122d5a8c28e8206a01cdc9b /testing/test_doctest.py
parentfa9bd8443fbfe1046fd11b40cfad53d43038a226 (diff)
downloadpytest-da3b42ce46389f9cbac81f3eabf3974e9ce56466.tar.gz
remove debugging left-overs
--HG-- branch : doctest-fixtures
Diffstat (limited to 'testing/test_doctest.py')
-rw-r--r--testing/test_doctest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/test_doctest.py b/testing/test_doctest.py
index d880fdef2..d95bd2fc9 100644
--- a/testing/test_doctest.py
+++ b/testing/test_doctest.py
@@ -125,7 +125,7 @@ class TestDoctests:
"*test_txtfile_failing.txt:2: DocTestFailure"
])
- def test_txtfile_with_fixtures(self, testdir, tmpdir):
+ def test_txtfile_with_fixtures(self, testdir):
p = testdir.maketxtfile("""
>>> dir = get_fixture('tmpdir')
>>> type(dir).__name__
@@ -134,7 +134,7 @@ class TestDoctests:
reprec = testdir.inline_run(p, )
reprec.assertoutcome(passed=1)
- def test_doctestmodule_with_fixtures(self, testdir, tmpdir):
+ def test_doctestmodule_with_fixtures(self, testdir):
p = testdir.makepyfile("""
'''
>>> dir = get_fixture('tmpdir')