We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 445a68d commit 190adceCopy full SHA for 190adce
tests/unit/activation/test_csh.py
@@ -7,6 +7,8 @@ def __init__(self, session):
7
super().__init__(CShellActivator, session, "csh", "activate.csh", "csh")
8
9
def print_prompt(self):
10
- return "echo 'source \"$VIRTUAL_ENV/bin/activate.csh\"; echo $prompt' | csh -i"
+ # Original csh doesn't print the last newline,
11
+ # breaking the test; hence the trailing echo.
12
+ return "echo 'source \"$VIRTUAL_ENV/bin/activate.csh\"; echo $prompt' | csh -i ; echo"
13
14
activation_tester(Csh)
0 commit comments