Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "Setting Headers" example in "Testing Actions" #1135

Merged
merged 1 commit into from
Dec 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/actions/guides/testing/testing_actions.cr
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ class Guides::Testing::TestingActions < GuideAction
client = ApiClient.new

client
.headers("Accept", "application/vnd.api.v1+json")
.headers("Set-Cookie", "remember_me=1")
.headers("Authorization", "Bearer abc123")
.headers("Accept": "application/vnd.api.v1+json")
.headers("Set-Cookie": "remember_me=1")
.headers("Authorization": "Bearer abc123")

# Then make your request:
client.exec(Api::Users::Index)
Expand All @@ -80,7 +80,7 @@ class Guides::Testing::TestingActions < GuideAction

def page(page : Int32, per_page = 10)
# Set pagination headers
headers("Range", "order,id \#{page * per_page}; order=desc,max=\#{per_page}"
headers("Range": "order,id \#{page * per_page}; order=desc,max=\#{per_page}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like there's a missing closing paren here as well

end
end
```
Expand Down