Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix test according to recent change in printer.py #764

Merged
merged 1 commit into from
Oct 1, 2012
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
2 changes: 1 addition & 1 deletion scripts/system-test/cli_tests/provider_import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test_success "changeset create" changeset create --org="$MANIFEST_ORG" --environ
test_success "changeset add product" changeset update --org="$MANIFEST_ORG" --environment="$MANIFEST_ENV" --name="$CS1_NAME" --add_product="$MANIFEST_EPROD"
check_delayed_jobs_running
test_success "changeset promote" changeset promote --org="$MANIFEST_ORG" --environment="$MANIFEST_ENV" --name="$CS1_NAME"
POOLID=$($CMD org subscriptions --name "$MANIFEST_ORG" -g -d ";" | grep "$MANIFEST_PROD_CP" | awk -F ' *; *' '{print $4}') # grab a pool for CP
POOLID=$($CMD org subscriptions --name "$MANIFEST_ORG" -g -d ";" --noheading | grep "$MANIFEST_PROD_CP" | awk -F ';' '{print $3}') # grab a pool for CP

test_success "system register with SLA" system register --name="$HOST" --org="$MANIFEST_ORG" --environment="$MANIFEST_ENV" --servicelevel="$SLA"
test_success "system update SLA" system update --name="$HOST" --org="$MANIFEST_ORG" --servicelevel="$SLA"
Expand Down
2 changes: 1 addition & 1 deletion scripts/system-test/helpers
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function get_pulp_repo_id() {
}

function get_repo_name() {
echo `$CMD repo list --org="$TEST_ORG" -g -d "##" | grep "$FEWUPS_REPO" | awk -F ' *## *' '{print $3}'`
echo `$CMD repo list --org="$TEST_ORG" -g -d "##" | grep "$FEWUPS_REPO" | awk -F '##' '{print $2}'`
}

function valid_id() {
Expand Down