Skip to content

Commit

Permalink
fix nix flake check
Browse files Browse the repository at this point in the history
  • Loading branch information
Radvendii committed Jun 1, 2022
1 parent 4e139eb commit 5a98964
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/integration.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
args@{ pkgs ? <nixpkgs>, ... }:
args@{ nixpkgs ? <nixpkgs>, ... }:

with (import "${pkgs}/lib");
with (import "${nixpkgs}/lib");

import "${pkgs}/nixos/tests/make-test-python.nix"
import "${nixpkgs}/nixos/tests/make-test-python.nix"
(
let
sshdConf = {
Expand Down Expand Up @@ -82,7 +82,9 @@ import "${pkgs}/nixos/tests/make-test-python.nix"
system2.wait_for_unit("multi-user.target")
system2.wait_until_fails("grep bar /tmp/foo")
system2.wait_until_succeeds("${nodes.system2After.config.system.build.toplevel}/bin/switch-to-configuration test")
system2.wait_until_succeeds(
"${nodes.system2After.config.system.build.toplevel}/bin/switch-to-configuration test"
)
system2.wait_until_succeeds("grep bar /tmp/foo")
'';
}
Expand Down

0 comments on commit 5a98964

Please sign in to comment.