Rename fixture apps_tmpdir

This commit is contained in:
Markus Unterwaditzer 2014-09-04 15:22:57 +02:00
parent a00ccdce94
commit 77d887526d
4 changed files with 48 additions and 48 deletions

View file

@ -577,8 +577,8 @@ class TestNoImports(object):
imp modules in the Python standard library.
"""
def test_name_with_import_error(self, apps_tmpdir):
apps_tmpdir.join('importerror.py').write('raise NotImplementedError()')
def test_name_with_import_error(self, modules_tmpdir):
modules_tmpdir.join('importerror.py').write('raise NotImplementedError()')
try:
flask.Flask('importerror')
except NotImplementedError: