diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-07 14:49:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-07 14:49:50 +0000 |
commit | 227afb8285b8f178987a7d6eb1d28a74201a5d1b (patch) | |
tree | 2501ab95b10e2958f93f6db7eba5fba66c136dd2 /cli/commands/cli_os.py | |
parent | 800d0ed2c883a51122b7fa1aa4d9d86405ae5416 (diff) | |
parent | f3381f49cc72fded67c1febe78b27e18ec396878 (diff) |
Merge "remove imported FUNCTEST_REPO object"
Diffstat (limited to 'cli/commands/cli_os.py')
-rw-r--r-- | cli/commands/cli_os.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/commands/cli_os.py b/cli/commands/cli_os.py index d38dc9e6a..fc027d5fe 100644 --- a/cli/commands/cli_os.py +++ b/cli/commands/cli_os.py @@ -11,10 +11,10 @@ import os import click + import functest.utils.functest_utils as ft_utils import functest.utils.openstack_clean as os_clean import functest.utils.openstack_snapshot as os_snapshot -from functest.utils.functest_utils import FUNCTEST_REPO as FUNCTEST_REPO functest_yaml = ft_utils.get_functest_yaml() @@ -80,7 +80,7 @@ class CliOpenStack: def check(self): self.ping_endpoint() - cmd = FUNCTEST_REPO + "/ci/check_os.sh" + cmd = ft_utils.FUNCTEST_REPO + "/ci/check_os.sh" ft_utils.execute_command(cmd, verbose=False) def snapshot_create(self): |