Merge pull request #44870 from symphorien/tests-eval
Fix evaluation of two tests
This commit is contained in:
commit
12eb1e96ce
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
import ./make-test.nix ({ pkgs, lib }:
|
||||
import ./make-test.nix ({ pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
let
|
||||
pathParts =
|
||||
(builtins.filter
|
||||
({prefix}: "DOCKER_CREDENTIALS" == prefix)
|
||||
({prefix, path}: "DOCKER_CREDENTIALS" == prefix)
|
||||
builtins.nixPath);
|
||||
in
|
||||
if (pathParts != []) then (builtins.head pathParts).path else ""
|
||||
|
|
Loading…
Reference in a new issue