From 6022db4d9d9df3bad37d5c41daa0a1db8bf6e660 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 9 Feb 2020 23:49:22 +0100 Subject: [PATCH] tests.nixos-functions: port test to python --- pkgs/test/nixos-functions/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/test/nixos-functions/default.nix b/pkgs/test/nixos-functions/default.nix index 6dee0a27a79..6a4f3164f92 100644 --- a/pkgs/test/nixos-functions/default.nix +++ b/pkgs/test/nixos-functions/default.nix @@ -33,7 +33,7 @@ in lib.optionalAttrs stdenv.hostPlatform.isLinux ( environment.systemPackages = [ pkgs.hello ]; }; testScript = '' - $machine->succeed("hello"); + machine.succeed("hello") ''; });