Skip to content

Commit aa85dca

Browse files
committed
Fix test output messaging, and bump gorouter code to include test status fixes
1 parent 46014b3 commit aa85dca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/run-unit-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PACKAGE="$1"
77
function printStatus {
88
local last_exit_status=$?
99
set +x
10-
if [[ last_exit_status -eq 0 ]]; then
10+
if (( last_exit_status == 0 )); then
1111
echo -e '\\nSWEET SUITE SUCCESS'
1212
else
1313
echo -e '\\nSUITE FAILURE'

src/code.cloudfoundry.org/gorouter

Submodule gorouter updated 1 file

0 commit comments

Comments
 (0)