diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2019-01-18 23:13:42 +0100 |
|---|---|---|
| committer | Daiderd Jordan <daiderd@gmail.com> | 2019-01-18 23:13:42 +0100 |
| commit | 236d9b0c2d6804a44571b6f7a4d0460ffe900f74 (patch) | |
| tree | 25f7aa54150c8676d8bebac6a91729748e245251 | |
| parent | 629fa534988b7a402f4278c9445f0e20e5f03973 (diff) | |
system-packages: make test actually check the expected behaviour
| -rw-r--r-- | tests/system-packages.nix | 2 |
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" ''; } |
