aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-04-04 12:37:20 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-04-04 12:37:34 -0700
commit7965dea55caf3e46c4993e7d974e60bae62bc471 (patch)
treedec9e736f601c2e63dc5f56cb32420ab05b58ec0
parent5d9b7f5c4bff05cf6a035604796595cf9b39eac2 (diff)
Rename robot docker from openecomp to onap
Change-Id: I0279eff6b0819f14156a8217716240c80aefe89e Issue-ID: INT-459 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rwxr-xr-xlib/robot4
-rwxr-xr-xtests/test_robot4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/robot b/lib/robot
index 70f8cf7..c00bb60 100755
--- a/lib/robot
+++ b/lib/robot
@@ -17,13 +17,13 @@ function _setup_ete_folder {
# get_robot_images() - Pull or build the Robot Docker images
function get_robot_images {
- pull_openecomp_image testsuite
+ pull_onap_image testsuite
}
# install_robot() - Run Robot services
function install_robot {
docker rm -f openecompete_container
- run_docker_image -d --name openecompete_container -v /opt/eteshare:/share -p 88:88 $nexus_docker_repo/openecomp/testsuite:$docker_version
+ run_docker_image -d --name openecompete_container -v /opt/eteshare:/share -p 88:88 $nexus_docker_repo/onap/testsuite:$docker_version
}
# init_robot() - Function that initialize Robot services
diff --git a/tests/test_robot b/tests/test_robot
index b96a088..165755c 100755
--- a/tests/test_robot
+++ b/tests/test_robot
@@ -29,7 +29,7 @@ function test_compile_robot_repos {
function test_get_robot_images {
get_robot_images
- asserts_image $nexus_docker_repo/openecomp/testsuite
+ asserts_image $nexus_docker_repo/onap/testsuite
}
# test_install_robot() - Verify the built and start of Robot services
@@ -38,7 +38,7 @@ function test_install_robot {
get_robot_images
install_robot
- asserts_image_running $nexus_docker_repo/openecomp/testsuite
+ asserts_image_running $nexus_docker_repo/onap/testsuite
}
if [ "$1" != '*' ]; then