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 de6eaec commit 77929e8Copy full SHA for 77929e8
tests/test_mkvirtualenv_requirements.sh
@@ -23,10 +23,10 @@ setUp () {
23
}
24
25
test_requirements_file () {
26
- echo "commandlineapp" > "$test_dir/requirements.txt"
+ echo "IPy" > "$test_dir/requirements.txt"
27
mkvirtualenv -r "$test_dir/requirements.txt" "env3" >/dev/null 2>&1
28
installed=$(pip freeze)
29
- assertTrue "CommandLineApp not found in $installed" "echo $installed | grep CommandLineApp"
+ assertTrue "IPy not found in $installed" "pip freeze | grep IPy"
30
31
32
. "$test_dir/shunit2"
0 commit comments