From f85086f6c35e3939a3159caf4820efaec392fe55 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Sun, 18 Apr 2021 18:40:06 +0200 Subject: [PATCH] nixos/tests/packagekit: fix test machine evaluation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit aa22be179a4dfb9633089ebc7c65c6d6c18a83d5 dropped the backend setting which was used in the test, breaking evaluation of the test in the process. Kind of defeats the purpose of a test if it isn't executed before merging a change to a module… --- nixos/tests/packagekit.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/tests/packagekit.nix b/nixos/tests/packagekit.nix index 28d1374bf92..020a4e65e6d 100644 --- a/nixos/tests/packagekit.nix +++ b/nixos/tests/packagekit.nix @@ -8,7 +8,6 @@ import ./make-test-python.nix ({ pkgs, ... }: { environment.systemPackages = with pkgs; [ dbus ]; services.packagekit = { enable = true; - backend = "test_nop"; }; };