diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-15 19:53:25 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-15 19:53:25 -0500 |
commit | 3558c1a03584064e9bb86d3886009902eec6832d (patch) | |
tree | b1e6b7d2e0d34e7bbcc1697c1cbe48d8b3d23794 /setuptools/tests/test_msvc9compiler.py | |
parent | 1cd6c9a1f6840ff82217a9e7059b8ec7049f3a32 (diff) | |
download | external_python_setuptools-3558c1a03584064e9bb86d3886009902eec6832d.tar.gz external_python_setuptools-3558c1a03584064e9bb86d3886009902eec6832d.tar.bz2 external_python_setuptools-3558c1a03584064e9bb86d3886009902eec6832d.zip |
Have mock_install_dir actually yield the file name. Ref #317.
Diffstat (limited to 'setuptools/tests/test_msvc9compiler.py')
-rw-r--r-- | setuptools/tests/test_msvc9compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_msvc9compiler.py b/setuptools/tests/test_msvc9compiler.py index e54e7a6e..82c4d521 100644 --- a/setuptools/tests/test_msvc9compiler.py +++ b/setuptools/tests/test_msvc9compiler.py @@ -173,4 +173,4 @@ class TestModulePatch: vcvarsall = os.path.join(result, 'vcvarsall.bat') with open(vcvarsall, 'w'): pass - yield + yield vcvarsall |