summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2019-01-18 23:13:42 +0100
committerDaiderd Jordan <daiderd@gmail.com>2019-01-18 23:13:42 +0100
commit236d9b0c2d6804a44571b6f7a4d0460ffe900f74 (patch)
tree25f7aa54150c8676d8bebac6a91729748e245251 /tests
parent629fa534988b7a402f4278c9445f0e20e5f03973 (diff)
system-packages: make test actually check the expected behaviour
Diffstat (limited to 'tests')
-rw-r--r--tests/system-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system-packages.nix b/tests/system-packages.nix
index d2cc524..092e2d3 100644
--- a/tests/system-packages.nix
+++ b/tests/system-packages.nix
@@ -5,6 +5,6 @@
test = ''
echo checking hello binary in /sw/bin >&2
- test "$(readlink -f ${config.out}/sw/bin/hello)" != "${pkgs.hello}/bin/foo"
+ test "$(readlink -f ${config.out}/sw/bin/hello)" = "${pkgs.hello}/bin/hello"
'';
}