summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-15 21:09:57 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-15 21:09:57 -0500
commite0e2c675ed69e88e78199a1f868fda23ad292877 (patch)
tree14080cd9902d2e566ff3601c6e0d1706fe9470d6
parent1320263f2241ae6abe827cdfbd402b12fee0a177 (diff)
downloadpython-setuptools-bitbucket-e0e2c675ed69e88e78199a1f868fda23ad292877.tar.gz
Fix failing test by reverting to author's original intent. Ref #317
-rw-r--r--setuptools/tests/test_msvc9compiler.py4
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):
"""