updated tests to use builddir instead of outdir

This commit is contained in:
Jacob Mason 2010-08-07 21:08:43 -05:00
parent 6f3932660a
commit 2dcb0f0178
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ def teardown_module():
def search_adapter_helper(adapter):
clear_builddir()
settings = {'outdir': os.path.join(test_root, 'websupport'),
settings = {'builddir': os.path.join(test_root, 'websupport'),
'status': StringIO(),
'warning': StringIO()}
settings.update({'srcdir': test_root,

View File

@ -27,7 +27,7 @@ except ImportError:
wraps = lambda f: (lambda w: w)
default_settings = {'outdir': os.path.join(test_root, 'websupport'),
default_settings = {'builddir': os.path.join(test_root, 'websupport'),
'status': StringIO(),
'warning': StringIO()}