summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@gmail.com>2014-08-08 15:15:04 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2014-08-19 15:49:03 +0000
commit9fc790f4a776e9d57b509b607b3a048b467e4cab (patch)
treed240b658a0479a9dd5a1dc01f4fbc58f4104845d
parent3e0f8d32ffaec34fddc7feedd7ec1ea2fe1bac94 (diff)
downloaddefinitions-9fc790f4a776e9d57b509b607b3a048b467e4cab.tar.gz
Rename wait_online to wait_until_online
-rwxr-xr-xscripts/release-test4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/release-test b/scripts/release-test
index 5ea82fa3..97e4a45a 100755
--- a/scripts/release-test
+++ b/scripts/release-test
@@ -154,7 +154,7 @@ class DeployedSystemInstance(object):
% (self.ip_address, timeout))
time.sleep(0.5)
- def wait_online(self, timeout=10):
+ def wait_until_online(self, timeout=10):
self._wait_for_dhcp(timeout)
self._wait_for_ssh(timeout)
@@ -284,7 +284,7 @@ class ReleaseApp(cliapp.Application):
def _run_tests(instance, system_path, system_morph,
(trove_host, trove_id, build_ref_prefix),
morph_helper, systems):
- instance.wait_online()
+ instance.wait_until_online()
tests = []
def baserock_build_test(instance):