Skip to content

Commit

Permalink
Fix quotations in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmgross committed Nov 8, 2023
1 parent 8472492 commit 384d6cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
with:
script: |
const endpoint = github.request.endpoint
return endpoint({url: \"/graphql\"}).headers.accept
return endpoint({url: "/graphql"}).headers.accept
result-encoding: string
- id: previews-set-single
name: Previews set to a single value
Expand All @@ -86,7 +86,7 @@ jobs:
previews: foo
script: |
const endpoint = github.request.endpoint
return endpoint({url: \"/graphql\"}).headers.accept
return endpoint({url: "/graphql"}).headers.accept
result-encoding: string
- id: previews-set-multiple
name: Previews set to comma-separated list
Expand All @@ -95,7 +95,7 @@ jobs:
previews: foo,bar,baz
script: |
const endpoint = github.request.endpoint
return endpoint({url: \"/graphql\"}).headers.accept
return endpoint({url: "/graphql"}).headers.accept
result-encoding: string
- run: |
echo "- Validating previews default"
Expand Down

0 comments on commit 384d6cf

Please sign in to comment.