summary refs log tree commit
path: root/test/spec_common_logger.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_common_logger.rb')
-rw-r--r--test/spec_common_logger.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spec_common_logger.rb b/test/spec_common_logger.rb
index f5f182aa..be020073 100644
--- a/test/spec_common_logger.rb
+++ b/test/spec_common_logger.rb
@@ -110,9 +110,9 @@ describe Rack::CommonLogger do
   it "escapes non printable characters except newline" do
     logdev = StringIO.new
     log = Logger.new(logdev)
-    Rack::MockRequest.new(Rack::CommonLogger.new(app_without_lint, log)).request("GET\b", "/hello")
+    Rack::MockRequest.new(Rack::CommonLogger.new(app_without_lint, log)).request("GET\x1f", "/hello")
 
-    logdev.string.must_match(/GET\\x8 \/hello HTTP\/1\.1/)
+    logdev.string.must_match(/GET\\x1f \/hello HTTP\/1\.1/)
   end
 
   it "log path with PATH_INFO" do