Skip to content

Commit

Permalink
[CI] test_rack_server.rb - fix rack/chunked code (#3098)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSP-Greg committed Mar 15, 2023
1 parent 00e1f32 commit e26b13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_rack_server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# Rack::Chunked is loaded by Rack v2, needs to be required by Rack 3.0,
# and is removed in Rack 3.1
require "rack/chunked" if Rack::RELEASE.between?('3', '3.1')
require "rack/chunked" if Rack::RELEASE.start_with? '3.0'

require "nio"

Expand Down

0 comments on commit e26b13e

Please sign in to comment.