clean up integration test urls

the endpoints for aodh, ceilometer and gnocchi end with trailing
slash. because of that, our tests are calling <endpoint>//<path>.
this works but is technically incorrect. this patch cleans it up.

Change-Id: I187ea35b6158ac86bc2c4f19597c37e0b75cf2e4
This commit is contained in:
gordon chung 2015-11-25 18:18:30 -05:00
parent bed0fc04f7
commit 50bbd80993

View File

@ -128,9 +128,9 @@ function _aodh_create_accounts {
"alarming" "OpenStack Alarming Service")
get_or_create_endpoint $aodh_service \
"$REGION_NAME" \
"$(aodh_service_url)/" \
"$(aodh_service_url)/" \
"$(aodh_service_url)/"
"$(aodh_service_url)" \
"$(aodh_service_url)" \
"$(aodh_service_url)"
fi
fi
}