diff options
Diffstat (limited to 'tests/user-envs.sh')
-rw-r--r-- | tests/user-envs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/user-envs.sh b/tests/user-envs.sh index bd14f51080b3..59565cff0dc8 100644 --- a/tests/user-envs.sh +++ b/tests/user-envs.sh @@ -82,7 +82,7 @@ test "$($nixenv -p $profiles/test -q | wc -l)" -eq 0 # Installing "foo" should only install the newest foo. $nixenv -p $profiles/test -f ./user-envs.nix -i foo -test "$($nixenv -p $profiles/test -q | grep foo- | wc)" -eq 1 +test "$($nixenv -p $profiles/test -q | grep foo- | wc -l)" -eq 1 $nixenv -p $profiles/test -q | grep -q foo-2.0 # On the other hand, this should install both (and should fail due to @@ -93,6 +93,6 @@ if $nixenv -p $profiles/test -f ./user-envs.nix -i foo-1.0 foo-2.0; then false; # Installing "*" should install one foo and one bar. $nixenv -p $profiles/test -f ./user-envs.nix -e '*' $nixenv -p $profiles/test -f ./user-envs.nix -i '*' -test "$($nixenv -p $profiles/test -q | wc)" -eq 2 +test "$($nixenv -p $profiles/test -q | wc -l)" -eq 2 $nixenv -p $profiles/test -q | grep -q foo-2.0 $nixenv -p $profiles/test -q | grep -q bar-0.1.1 |