From 387b09a53a5f4c567add8f795eae26abc651f270 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 21 Aug 2020 16:03:14 -0700 Subject: [PATCH] Fix previous zezere change (use single quotes) Stupid @. Signed-off-by: Adam Williamson --- tests/_iot_zezere_remote.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_iot_zezere_remote.pm b/tests/_iot_zezere_remote.pm index 4fd833e7..5cb44aca 100644 --- a/tests/_iot_zezere_remote.pm +++ b/tests/_iot_zezere_remote.pm @@ -45,7 +45,7 @@ sub run { # time before the provision request goes through is kinda hard to # predict, so we'll just try over and over for up to 10 minutes # and bail as soon as it works - assert_script_run "until ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no root@172.16.2.119 touch /tmp/zezerekeyfile; do sleep 10; done", 600; + assert_script_run 'until ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no root@172.16.2.119 touch /tmp/zezerekeyfile; do sleep 10; done', 600; }