Skip to content

Commit 8fd3ef1

Browse files
authored
Fix several regexp warnings. (#105)
1 parent c566eb7 commit 8fd3ef1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/webrick/test_httpresponse.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def test_send_body_proc_upgrade
272272
IO.pipe do |r, w|
273273
@res.send_response(w)
274274
w.close
275-
assert_match /Connection: upgrade\r\nUpgrade: text\r\n\r\nhello/, r.read
275+
assert_match(/Connection: upgrade\r\nUpgrade: text\r\n\r\nhello/, r.read)
276276
end
277277
assert_empty logger.messages
278278
end
@@ -292,7 +292,7 @@ def test_send_body_proc_stream
292292
s2.write("hello")
293293
s2.close_write
294294
chunk = s2.read
295-
assert_match /Connection: close\r\n\r\nhello/, chunk
295+
assert_match(/Connection: close\r\n\r\nhello/, chunk)
296296
s2.close
297297

298298
thread.join

0 commit comments

Comments
 (0)