From b00fc36248a3b980c3d1ffee4aad2bf3d615bf24 Mon Sep 17 00:00:00 2001 From: Benjy Weinberger Date: Sat, 1 Dec 2018 16:20:35 -0800 Subject: [PATCH] Fix a typo. --- .../python/pants_test/backend/python/test_interpreter_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/pants_test/backend/python/test_interpreter_cache.py b/tests/python/pants_test/backend/python/test_interpreter_cache.py index 1a92b670224e..86196d710ed9 100644 --- a/tests/python/pants_test/backend/python/test_interpreter_cache.py +++ b/tests/python/pants_test/backend/python/test_interpreter_cache.py @@ -154,7 +154,7 @@ def test_interpereter_cache_setup_using_pex_python_paths(self): py27_path, py36_path = python_interpreter_path(PY_27), python_interpreter_path(PY_36) with setup_pexrc_with_pex_python_path([py27_path, py36_path]): with self._setup_cache(constraints=['CPython>=2.7,<3'], - search_paths=['']) as (cache, _): self.assertIn(py27_path, {pi.binary for pi in cache.setup()}) with self._setup_cache(constraints=['CPython>=3.6,<4'], search_paths=['']) as (cache, _):