diff options
author | Félix Baylac Jacqué | 2023-03-03 08:18:29 +0100 |
---|---|---|
committer | Félix Baylac Jacqué | 2023-03-03 08:18:29 +0100 |
commit | bee41ce73563dfd4fe666ffd5b3a6ae86eaa1c90 (patch) | |
tree | 9175ecf9b70debe938e1c0acfe11223372507dcf /nixos/tests | |
parent | 96131c779d678a11a403d2b2d37f5d05bbd32e83 (diff) |
nixosTests/pleroma: node.xx.config -> node.xx
Accessing a test driver node configuration via node.xxx.config is now deprecated. Migrating to the new API.
Diffstat (limited to 'nixos/tests')
-rw-r--r-- | nixos/tests/pleroma.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/pleroma.nix b/nixos/tests/pleroma.nix index 8998716243a2..4f1aef854146 100644 --- a/nixos/tests/pleroma.nix +++ b/nixos/tests/pleroma.nix @@ -170,8 +170,8 @@ import ./make-test-python.nix ({ pkgs, ... }: ''; hosts = nodes: '' - ${nodes.pleroma.config.networking.primaryIPAddress} pleroma.nixos.test - ${nodes.client.config.networking.primaryIPAddress} client.nixos.test + ${nodes.pleroma.networking.primaryIPAddress} pleroma.nixos.test + ${nodes.client.networking.primaryIPAddress} client.nixos.test ''; in { name = "pleroma"; |