Skip to content

Commit

Permalink
Fix escaping of structured logging in e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fishbowler committed Nov 21, 2024
1 parent e02651d commit 4967f7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/run_tests
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ command -v maestro >/dev/null 2>&1 || { echo "maestro is required" && exit 1; }
ALL_PASS=true

_h1() {
printf "=>\n=> $1\n=>\n"
printf "=>\n=> %s\n=>\n" "$1"
}

_h2() {
printf "==> [$1] $2\n"
printf "==> [%s] %s\n" "$1" "$2"
}

_h3() {
printf "==> [$1] [$2] => $3\n"
printf "==> [%s] [%s] => %s\n" "$1" "$2" "$3"
}

platform="${1:-}"
Expand Down

0 comments on commit 4967f7e

Please sign in to comment.