summaryrefslogtreecommitdiff
path: root/test/spec_lint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_lint.rb')
-rwxr-xr-xtest/spec_lint.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spec_lint.rb b/test/spec_lint.rb
index 06003a9a..4bc28c64 100755
--- a/test/spec_lint.rb
+++ b/test/spec_lint.rb
@@ -721,10 +721,10 @@ describe Rack::Lint do
end
-describe "Rack::Lint::InputWrapper" do
+describe "Rack::Lint::Wrapper::InputWrapper" do
it "delegate :rewind to underlying IO object" do
io = StringIO.new("123")
- wrapper = Rack::Lint::InputWrapper.new(io)
+ wrapper = Rack::Lint::Wrapper::InputWrapper.new(io)
wrapper.read.must_equal "123"
wrapper.read.must_equal ""
wrapper.rewind