summary refs log tree commit
path: root/test/spec_common_logger.rb
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2022-07-06 18:48:57 -0700
committerGitHub <noreply@github.com>2022-07-07 13:48:57 +1200
commitaa1f4700a2461f3f80abd219e874d0edd9a0c599 (patch)
tree0164a36da632096cfe2c8b403b644830722a8000 /test/spec_common_logger.rb
parent08b40cf0f298fd45c975f191230a0c71270ac4df (diff)
downloadrack-aa1f4700a2461f3f80abd219e874d0edd9a0c599.tar.gz
Hex escape unprintable bytes in common logger (#1904)
When using \x prefix, users would expect hex escaping.
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