Skip to content

Commit 77929e8

Browse files
committed
use packages available for python 3
1 parent de6eaec commit 77929e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_mkvirtualenv_requirements.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ setUp () {
2323
}
2424

2525
test_requirements_file () {
26-
echo "commandlineapp" > "$test_dir/requirements.txt"
26+
echo "IPy" > "$test_dir/requirements.txt"
2727
mkvirtualenv -r "$test_dir/requirements.txt" "env3" >/dev/null 2>&1
2828
installed=$(pip freeze)
29-
assertTrue "CommandLineApp not found in $installed" "echo $installed | grep CommandLineApp"
29+
assertTrue "IPy not found in $installed" "pip freeze | grep IPy"
3030
}
3131

3232
. "$test_dir/shunit2"

0 commit comments

Comments
 (0)