about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorRick van Schijndel <Mindavi@users.noreply.github.com>2024-04-19 08:26:09 +0200
committerGitHub <noreply@github.com>2024-04-19 08:26:09 +0200
commite00a40a257e9d960a94020989e00b7d7c1238294 (patch)
tree32aa468dd35693061a7104c23ea04aa4f2bc26d7 /nixos/tests
parentf8022afb8b7a0cb91184ba2a510251af454142db (diff)
parent7b687a59cd8ee5db7cfd8067943149dd0d9215cf (diff)
Merge pull request #298680 from gvolpe/lib/transposeMap
lib/attrsets: add mapCartesianProduct function
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/predictable-interface-names.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/predictable-interface-names.nix b/nixos/tests/predictable-interface-names.nix
index 51d5e8ae59b92..9ac4f8211e6b1 100644
--- a/nixos/tests/predictable-interface-names.nix
+++ b/nixos/tests/predictable-interface-names.nix
@@ -5,7 +5,7 @@
 
 let
   inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
-  testCombinations = pkgs.lib.cartesianProductOfSets {
+  testCombinations = pkgs.lib.cartesianProduct {
     predictable = [true false];
     withNetworkd = [true false];
     systemdStage1 = [true false];