We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac201d commit 2aa7970Copy full SHA for 2aa7970
tests/test_mkvirtualenv.sh
@@ -81,7 +81,7 @@ test_no_workon_home () {
81
export WORKON_HOME="$WORKON_HOME/not_there"
82
mkvirtualenv should_be_created >"$old_home/output" 2>&1
83
output=$(cat "$old_home/output")
84
- assertTrue "Did not see expected message" "echo $output | grep 'does not exist'"
+ assertTrue "Did not see expected message in \"$output\"" "cat \"$old_home/output\" | grep 'does not exist'"
85
assertTrue "Did not create environment" "[ -d \"$WORKON_HOME/should_be_created\" ]"
86
WORKON_HOME="$old_home"
87
}
0 commit comments