summary refs log tree commit diff
path: root/nixos/tests/postgresql.nix
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2019-02-04 03:56:43 +0100
committerPierre Bourdon <delroth@gmail.com>2019-02-04 03:56:43 +0100
commita8da72b01213af6eb40cbea94290ae1c3b0f1600 (patch)
tree06c3bcb48751f9be3f1f3825f03cc0422d5bb460 /nixos/tests/postgresql.nix
parentc77728de7b8b0d42c3f1f961cc55999e82eb52e2 (diff)
downloadnixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.tar
nixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.tar.gz
nixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.tar.bz2
nixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.tar.lz
nixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.tar.xz
nixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.tar.zst
nixpkgs-a8da72b01213af6eb40cbea94290ae1c3b0f1600.zip
nixos/tests/postgresql: fix regression from #55106
Diffstat (limited to 'nixos/tests/postgresql.nix')
-rw-r--r--nixos/tests/postgresql.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/postgresql.nix b/nixos/tests/postgresql.nix
index cf1de2f6acb..ae5d6d095ea 100644
--- a/nixos/tests/postgresql.nix
+++ b/nixos/tests/postgresql.nix
@@ -68,6 +68,6 @@ let
   };
 in
   (mapAttrs' (name: package: { inherit name; value=make-postgresql-test name package false;}) postgresql-versions) // {
-    postgresql_11-backup-all = make-postgresql-test name postgresql-versions.postgresql_11 true;
+    postgresql_11-backup-all = make-postgresql-test "postgresql_11-backup-all" postgresql-versions.postgresql_11 true;
   }