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.
This commit is contained in:
Félix Baylac Jacqué 2023-03-03 08:18:29 +01:00
parent 96131c779d
commit bee41ce735

View file

@ -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";