Skip to content

Commit

Permalink
Clarify test relationship to env_case.py fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Sep 12, 2023
1 parent 22b8dba commit c547555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c547555

Please sign in to comment.