Skip to content

Commit a59aaea

Browse files
committed
Condense an overly long comment
To better focus on the key information.
1 parent 74d9c08 commit a59aaea

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/test_git.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,9 @@ def test_it_avoids_upcasing_unrelated_environment_variable_names(self):
104104
# process, so the name is not upcased even on Windows.
105105
os.putenv(old_name, "1")
106106

107-
# Step 2: Create the child process that inherits the environment variable. It will see it
108-
# in os.environ with an upcased name, but if it is not mutated through os.environ
109-
# then it will pass it on to its own child processes with the original name. The
110-
# child process will use GitPython, and we are testing that it passes the variable
111-
# with the exact original name to its own child processes.
107+
# Step 2: Create the child process that inherits the environment variable. The child uses
108+
# GitPython, and we are testing that it passes the variable with the exact original
109+
# name to its own child process (the grandchild).
112110
cmdline = [
113111
sys.executable,
114112
fixture_path("env_case.py"),

0 commit comments

Comments
 (0)