We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b8dba commit c547555Copy full SHA for c547555
test/test_git.py
@@ -109,11 +109,11 @@ def test_it_avoids_upcasing_unrelated_environment_variable_names(self):
109
# name to its own child process (the grandchild).
110
cmdline = [
111
sys.executable,
112
- fixture_path("env_case.py"),
+ fixture_path("env_case.py"), # Contains steps 3 and 4.
113
self.rorepo.working_dir,
114
old_name,
115
]
116
- 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.
117
118
new_name = pair_text.split("=")[0]
119
self.assertEqual(new_name, old_name)
0 commit comments