Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Jan 29, 2025
1 parent 0919538 commit adc7a03
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/HTTP.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export WebSockets

include("utils.jl")
include("access_log.jl")
include("Sniff.jl"); using .Sniff
include("Forms.jl"); using .Forms
include("sniff.jl"); using .Sniff
include("forms.jl"); using .Forms
include("requestresponse.jl")
include("cookies.jl"); using .Cookies
include("client/redirects.jl")
Expand All @@ -21,7 +21,7 @@ include("client/stream.jl")
include("client/makerequest.jl")
include("websockets.jl"); using .WebSockets
include("server.jl")
include("Handlers.jl"); using .Handlers
include("handlers.jl"); using .Handlers
include("statuses.jl")

struct StatusError <: Exception
Expand Down
1 change: 1 addition & 0 deletions src/forms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export Form, Multipart, content_type, parse_multipart_form

import ..sniff


# Form request body
mutable struct Form <: IO
data::Vector{IO}
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/WebSockets.jl → src/websockets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ end
"""
WebSockets.isclosed(ws) -> Bool
Check whether a `WebSocket` has sent and received CLOSE frames.
Check whether a `WebSocket` has sent and received CLOSE frames
"""
isclosed(ws::WebSocket) = !isopen(ws.readchannel) && ws.writeclosed

Expand Down

0 comments on commit adc7a03

Please sign in to comment.