Skip to content

Commit 2cf5f7d

Browse files
authored
Merge pull request #191 from ATIX-AG/remove-check
Removed unnecessary curl sanity check in tests.
2 parents a164249 + fb17ae6 commit 2cf5f7d

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

CHANGES/190.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Removed an unnecessary curl sanity check in ``test_deb_sync_publish`` that failed when domain support was enabled.

tests/scripts/pulp_deb/test_deb_sync_publish.sh

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ cleanup() {
1414
}
1515
trap cleanup EXIT
1616

17-
if [ "$VERIFY_SSL" = "false" ]
18-
then
19-
curl_opt="-k"
20-
else
21-
curl_opt=""
22-
fi
23-
2417
expect_succ pulp deb remote create \
2518
--name "${ENTITIES_NAME}_remote" \
2619
--url "$DEB_REMOTE_URL" \
@@ -53,9 +46,6 @@ expect_succ pulp deb distribution create --name "${ENTITIES_NAME}_distro" \
5346
--base-path "cli_test_deb_distro" \
5447
--publication "$PUBLICATION_HREF"
5548

56-
expect_succ curl "$curl_opt" --head \
57-
--fail "$PULP_BASE_URL/pulp/content/cli_test_deb_distro/dists/default/Release"
58-
5949
expect_succ pulp deb distribution destroy --name "${ENTITIES_NAME}_distro"
6050
expect_succ pulp deb publication destroy --href "${PUBLICATION_HREF}"
6151
expect_succ pulp deb repository destroy --name "${ENTITIES_NAME}_repo"

0 commit comments

Comments
 (0)