From c547555026e099defd361e95e8c06acd5f2c0a2f Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Tue, 12 Sep 2023 00:56:01 -0400 Subject: [PATCH] Clarify test relationship to env_case.py fixture --- test/test_git.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_git.py b/test/test_git.py index 60cd60bd9..4d57a2d86 100644 --- a/test/test_git.py +++ b/test/test_git.py @@ -109,11 +109,11 @@ def test_it_avoids_upcasing_unrelated_environment_variable_names(self): # name to its own child process (the grandchild). cmdline = [ sys.executable, - fixture_path("env_case.py"), + fixture_path("env_case.py"), # Contains steps 3 and 4. self.rorepo.working_dir, old_name, ] - pair_text = subprocess.check_output(cmdline, shell=False, text=True) # Steps 3 and 4. + pair_text = subprocess.check_output(cmdline, shell=False, text=True) # Run steps 3 and 4. new_name = pair_text.split("=")[0] self.assertEqual(new_name, old_name)