Skip to content

Commit

Permalink
Restrict to 1.8 and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Oct 7, 2023
1 parent c94ff32 commit b62d8ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.7'
- '1.8'
- '1' # automatically expands to the latest stable 1.x release of Julia
- nightly
os:
Expand Down
2 changes: 1 addition & 1 deletion test/client.jl
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
@test isok(HTTP2.post("https://$httpbin/post"; body=UInt8['h','e','y']))
io = IOBuffer("hey"); seekstart(io)
@test isok(HTTP2.post("https://$httpbin/post"; body=io))
mktemp() do (path, io)
mktemp() do path, io
write(io, "hey"); seekstart(io)
@test isok(HTTP2.post("https://$httpbin/post"; body=io))
end
Expand Down

0 comments on commit b62d8ad

Please sign in to comment.