summaryrefslogtreecommitdiff
path: root/test/webrick/test_cgi.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/webrick/test_cgi.rb')
-rw-r--r--test/webrick/test_cgi.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/webrick/test_cgi.rb b/test/webrick/test_cgi.rb
index 50affcae91..2d7ad2d085 100644
--- a/test/webrick/test_cgi.rb
+++ b/test/webrick/test_cgi.rb
@@ -113,7 +113,7 @@ class TestWEBrickCGI < Test::Unit::TestCase
assert_match(%r{\AHTTP/\d.\d 400 Bad Request}, res)
s = log.call.each_line.grep(/ERROR bad URI/)[0]
assert_match(DumpPat, s)
- assert_not_match(CtrlPat, s)
+ refute_match(CtrlPat, s)
}
end
@@ -127,7 +127,7 @@ class TestWEBrickCGI < Test::Unit::TestCase
assert_match(%r{\AHTTP/\d.\d 400 Bad Request}, res)
s = log.call.each_line.grep(/ERROR bad header/)[0]
assert_match(DumpPat, s)
- assert_not_match(CtrlPat, s)
+ refute_match(CtrlPat, s)
}
end
end