about summary refs log tree commit diff
path: root/nixos/tests/predictable-interface-names.nix
diff options
context:
space:
mode:
authorGabriel Volpe <volpegabriel@gmail.com>2024-04-15 19:13:22 +0200
committerGabriel Volpe <volpegabriel@gmail.com>2024-04-15 19:13:22 +0200
commit10517cf9abe8d54c66b1dd5fb18fc4b03750037f (patch)
tree5aaf3bb4c4c3ee39c4e8ec82bef373eed00729a3 /nixos/tests/predictable-interface-names.nix
parent228621e42dc43f936b66e0ed042c90c511aa0535 (diff)
tree-wide: use cartesianProduct
Diffstat (limited to 'nixos/tests/predictable-interface-names.nix')
-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];