about summary refs log tree commit diff
path: root/nixos/tests/tinydns.nix
diff options
context:
space:
mode:
authorSergey Lukjanov <me@slukjanov.name>2020-02-19 12:27:29 -0800
committerSergey Lukjanov <me@slukjanov.name>2020-02-19 12:27:29 -0800
commitc8a873560fa002b713d90259c31ac3d05eddb416 (patch)
treedf0950ebd508e9a258a3e2cd3092033b8dec296d /nixos/tests/tinydns.nix
parentaf1fffab5b89d363ef506e0f9d73a2d604111675 (diff)
nixos/tinydns: use local dns server to fix test
Diffstat (limited to 'nixos/tests/tinydns.nix')
-rw-r--r--nixos/tests/tinydns.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/tinydns.nix b/nixos/tests/tinydns.nix
index c7740d5ade353..b80e3451700a6 100644
--- a/nixos/tests/tinydns.nix
+++ b/nixos/tests/tinydns.nix
@@ -21,6 +21,6 @@ import ./make-test-python.nix ({ lib, ...} : {
   testScript = ''
     nameserver.start()
     nameserver.wait_for_unit("tinydns.service")
-    nameserver.succeed("host bla.foo.bar | grep '1\.2\.3\.4'")
+    nameserver.succeed("host bla.foo.bar 192.168.1.1 | grep '1\.2\.3\.4'")
   '';
 })