about summary refs log tree commit diff
path: root/nixos/tests/pppd.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-11-08 17:08:17 +0100
committerFlorian Klink <flokli@flokli.de>2019-11-08 17:11:11 +0100
commit24b540d3ce52ec0a26b9077622463604bf0b539a (patch)
tree0a845af45b5bfad2ee99e874b6858677454ee42f /nixos/tests/pppd.nix
parenta2429cffa3451f3d5c8e80a295663fef0a96bd9b (diff)
nixos/pppd: port test to python
Diffstat (limited to 'nixos/tests/pppd.nix')
-rw-r--r--nixos/tests/pppd.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/tests/pppd.nix b/nixos/tests/pppd.nix
index 91f811859093d..bda0aa75bb502 100644
--- a/nixos/tests/pppd.nix
+++ b/nixos/tests/pppd.nix
@@ -1,4 +1,4 @@
-import ./make-test.nix (
+import ./make-test-python.nix (
   let
     chap-secrets = {
       text = ''"flynn" * "reindeerflotilla" *'';
@@ -53,10 +53,10 @@ import ./make-test.nix (
         environment.etc."ppp/chap-secrets" = chap-secrets;
       };
     };
-  
+
     testScript = ''
-      startAll;
-      $client->waitUntilSucceeds("ping -c1 -W1 192.0.2.1");
-      $server->waitUntilSucceeds("ping -c1 -W1 192.0.2.2");
+      start_all()
+      client.wait_until_succeeds("ping -c1 -W1 192.0.2.1")
+      server.wait_until_succeeds("ping -c1 -W1 192.0.2.2")
     '';
-  })  
+  })