Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/system/python/pair/test_e2e_fledge_pair.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def reset_and_start_fledge_remote(self, storage_plugin, remote_user, remote_ip,
remote_fledge_path: Path where Fledge is cloned and built
"""
if remote_fledge_path is None:
remote_fledge_path = '/home/{}/Fledge'.format(remote_user)
remote_fledge_path = '/home/{}/fledge'.format(remote_user)
subprocess.run(["ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i {} {}@{} 'export FLEDGE_ROOT={};$FLEDGE_ROOT/scripts/fledge kill'".format(key_path, remote_user,
remote_ip,
remote_fledge_path)], shell=True, check=True)
Expand Down Expand Up @@ -106,7 +106,7 @@ def start_south_north_remote(self, reset_and_start_fledge_remote, use_pip_cache,
"""

if remote_fledge_path is None:
remote_fledge_path = '/home/{}/Fledge'.format(remote_user)
remote_fledge_path = '/home/{}/fledge'.format(remote_user)
fledge_url = "{}:8081".format(remote_ip)
south_plugin = "http"
south_service = "http_south"
Expand Down
4 changes: 2 additions & 2 deletions tests/system/python/scripts/install_c_plugin
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ clean () {
}

clone_repo () {
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge/${REPO_NAME}.git /tmp/${REPO_NAME}
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge-iot/${REPO_NAME}.git /tmp/${REPO_NAME}
}

install_requirement (){
Expand All @@ -51,7 +51,7 @@ install_binary_file () {
then
# fledge-service-notification repo is required to build notificationRule Plugins
service_repo_name='fledge-service-notification'
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge/${service_repo_name}.git /tmp/${service_repo_name}
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge-iot/${service_repo_name}.git /tmp/${service_repo_name}
export NOTIFICATION_SERVICE_INCLUDE_DIRS=/tmp/${service_repo_name}/C/services/common/include
fi

Expand Down
2 changes: 1 addition & 1 deletion tests/system/python/scripts/install_c_service
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ clean () {
}

clone_repo () {
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge/${REPO_NAME}.git /tmp/${REPO_NAME}
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge-iot/${REPO_NAME}.git /tmp/${REPO_NAME}
}

install_binary_file () {
Expand Down
2 changes: 1 addition & 1 deletion tests/system/python/scripts/install_python_plugin
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ clean () {
}

clone_repo () {
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge/${REPO_NAME}.git /tmp/${REPO_NAME}
git clone -b ${BRANCH_NAME} --single-branch https://github.com/fledge-iot/${REPO_NAME}.git /tmp/${REPO_NAME}
}

copy_file_and_requirement () {
Expand Down