Skip to content

Commit c547555

Browse files
committed
Clarify test relationship to env_case.py fixture
1 parent 22b8dba commit c547555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_git.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ def test_it_avoids_upcasing_unrelated_environment_variable_names(self):
109109
# name to its own child process (the grandchild).
110110
cmdline = [
111111
sys.executable,
112-
fixture_path("env_case.py"),
112+
fixture_path("env_case.py"), # Contains steps 3 and 4.
113113
self.rorepo.working_dir,
114114
old_name,
115115
]
116-
pair_text = subprocess.check_output(cmdline, shell=False, text=True) # Steps 3 and 4.
116+
pair_text = subprocess.check_output(cmdline, shell=False, text=True) # Run steps 3 and 4.
117117

118118
new_name = pair_text.split("=")[0]
119119
self.assertEqual(new_name, old_name)

0 commit comments

Comments
 (0)