summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-18 18:40:06 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-18 18:40:06 +0200
commitf85086f6c35e3939a3159caf4820efaec392fe55 (patch)
tree3674a1aa16be172ad7640de4ac42f25649c15f3d /nixos/tests
parent41dbd1095bde5a77e82bb379d700d8d3f9d06777 (diff)
downloadnixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.tar
nixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.tar.gz
nixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.tar.bz2
nixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.tar.lz
nixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.tar.xz
nixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.tar.zst
nixpkgs-f85086f6c35e3939a3159caf4820efaec392fe55.zip
nixos/tests/packagekit: fix test machine evaluation
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ā€¦
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/packagekit.nix1
1 files changed, 0 insertions, 1 deletions
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";
     };
   };