From 3f44ea4805d6b23a943727666217c170c8bab6cc Mon Sep 17 00:00:00 2001 From: Teppei Yano Date: Tue, 18 Aug 2020 14:12:47 +0900 Subject: [PATCH] fix typo --- test/t/ngx_mruby.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t/ngx_mruby.rb b/test/t/ngx_mruby.rb index af8d426b..f9f58739 100644 --- a/test/t/ngx_mruby.rb +++ b/test/t/ngx_mruby.rb @@ -444,13 +444,13 @@ def _run t.assert_equal "THIS IS AN ERROR MESSAGE FOR 401", res["body"] end -t.assert('ngx_mruby - multipul request headers', 'location /multi_headers_in') do +t.assert('ngx_mruby - multiple request headers', 'location /multi_headers_in') do res = HttpRequest.new.get base + '/multi_headers_in', nil, {"hoge" => "foo"} t.assert_equal 200, res.code t.assert_equal '["foo", "fuga"]', res["body"] end -t.assert('ngx_mruby - multipul response headers', 'location /multi_headers_out') do +t.assert('ngx_mruby - multiple response headers', 'location /multi_headers_out') do res = HttpRequest.new.get base + '/multi_headers_out' t.assert_equal 200, res.code t.assert_equal '["foo", "fuga"]', res["body"]