Skip to content

Commit

Permalink
Fix quotes in test name shortening regex. (kubernetes#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrcunha authored and knative-prow-robot committed Jan 9, 2019
1 parent fef8c6c commit 7f5bc41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function report_go_test() {
local xml=$(mktemp ${ARTIFACTS}/junit_XXXXXXXX.xml)
cat ${report} \
| go-junit-report \
| sed -e 's#"github.com/knative/${REPO_NAME}/#"#g' \
| sed -e "s#\"github.com/knative/${REPO_NAME}/#\"#g" \
> ${xml}
echo "XML report written to ${xml}"
return ${failed}
Expand Down

0 comments on commit 7f5bc41

Please sign in to comment.