From 236d9b0c2d6804a44571b6f7a4d0460ffe900f74 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Fri, 18 Jan 2019 23:13:42 +0100 Subject: [PATCH] system-packages: make test actually check the expected behaviour --- tests/system-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-packages.nix b/tests/system-packages.nix index d2cc5242..092e2d3e 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" ''; }