diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-15 21:09:57 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-15 21:09:57 -0500 |
commit | 21ebac859dff95cb593180f7fffdf74d8a5e5275 (patch) | |
tree | d007cab6691481671f073ddb5573c42603dd8f66 | |
parent | 64f09ab5fb6c9c0a0344e50388022ee6e2e85d85 (diff) | |
download | external_python_setuptools-21ebac859dff95cb593180f7fffdf74d8a5e5275.tar.gz external_python_setuptools-21ebac859dff95cb593180f7fffdf74d8a5e5275.tar.bz2 external_python_setuptools-21ebac859dff95cb593180f7fffdf74d8a5e5275.zip |
Fix failing test by reverting to author's original intent. Ref #317
-rw-r--r-- | setuptools/tests/test_msvc9compiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_msvc9compiler.py b/setuptools/tests/test_msvc9compiler.py index 0790e3d2..09e0460c 100644 --- a/setuptools/tests/test_msvc9compiler.py +++ b/setuptools/tests/test_msvc9compiler.py @@ -142,7 +142,7 @@ class TestModulePatch: def x64_preferred_setting(self): """ Set up environment with 64-bit and 32-bit system settings configured - and yield the 64-bit location. + and yield the canonical location. """ with self.mock_install_dir() as x32_dir: with self.mock_install_dir() as x64_dir: @@ -155,7 +155,7 @@ class TestModulePatch: }, ) with reg: - yield x64_dir + yield x32_dir def test_ensure_64_bit_preferred(self, x64_preferred_setting): """ |