summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorJohan Thomsen <jth@dbc.dk>2018-12-12 21:30:32 +0100
committerJohan Thomsen <jth@dbc.dk>2018-12-12 21:30:32 +0100
commit1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2 (patch)
tree9686c453c749594fafb8c44e53c757920a06e637 /nixos/tests
parentc64e5ccc2f2ed3cb19157e7749cda647f7449162 (diff)
downloadnixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.tar
nixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.tar.gz
nixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.tar.bz2
nixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.tar.lz
nixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.tar.xz
nixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.tar.zst
nixpkgs-1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2.zip
nixos/kubernetes: fix import path of default nixpkgs
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/kubernetes/base.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/kubernetes/base.nix b/nixos/tests/kubernetes/base.nix
index b77da3414b3..9d77be13175 100644
--- a/nixos/tests/kubernetes/base.nix
+++ b/nixos/tests/kubernetes/base.nix
@@ -1,6 +1,6 @@
 { system ? builtins.currentSystem,
   config ? {},
-  pkgs ? import ../.. { inherit system config; }
+  pkgs ? import ../../.. { inherit system config; }
 }:
 
 with import ../../lib/testing.nix { inherit system pkgs; };