Skip to content

Commit

Permalink
nixos/tests/switch-test.nix: Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Jun 28, 2023
1 parent 9edad17 commit 8966419
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nixos/tests/switch-test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -482,9 +482,9 @@ in {
};

testScript = { nodes, ... }: let
originalSystem = nodes.machine.config.system.build.toplevel;
otherSystem = nodes.other.config.system.build.toplevel;
machine = nodes.machine.config.system.build.toplevel;
originalSystem = nodes.machine.system.build.toplevel;
otherSystem = nodes.other.system.build.toplevel;
machine = nodes.machine.system.build.toplevel;

# Ensures failures pass through using pipefail, otherwise failing to
# switch-to-configuration is hidden by the success of `tee`.
Expand Down

0 comments on commit 8966419

Please sign in to comment.