Skip to content

Commit

Permalink
need to lookup gorillamux as net/http for now
Browse files Browse the repository at this point in the history
  • Loading branch information
robbkidd committed May 11, 2023
1 parent 6e60027 commit 3263607
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/gorillamux/verify.bats
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ TEMP_LIBRARY_NAME="net/http"
}

@test "${LIBRARY_NAME} :: trace ID present and valid in all spans" {
trace_id=$(spans_from_scope_named ${LIBRARY_NAME} | jq ".traceId")
trace_id=$(spans_from_scope_named ${TEMP_LIBRARY_NAME} | jq ".traceId")
assert_regex "$trace_id" ${MATCH_A_TRACE_ID}
}

@test "${LIBRARY_NAME} :: span ID present and valid in all spans" {
span_id=$(spans_from_scope_named ${LIBRARY_NAME} | jq ".spanId")
span_id=$(spans_from_scope_named ${TEMP_LIBRARY_NAME} | jq ".spanId")
assert_regex "$span_id" ${MATCH_A_SPAN_ID}
}

Expand Down

0 comments on commit 3263607

Please sign in to comment.