summaryrefslogtreecommitdiff
path: root/test/ruby/test_econv.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_econv.rb')
-rw-r--r--test/ruby/test_econv.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ruby/test_econv.rb b/test/ruby/test_econv.rb
index caa0fca8b7..5a4af9b6a3 100644
--- a/test/ruby/test_econv.rb
+++ b/test/ruby/test_econv.rb
@@ -922,7 +922,9 @@ class TestEncodingConverter < Test::Unit::TestCase
end
newlines.each do |nl|
opts = {newline: :universal, nl => true}
- ec2 = Encoding::Converter.new("", "", **opts)
+ ec2 = assert_warning(/:newline option preceds/, opts.inspect) do
+ Encoding::Converter.new("", "", **opts)
+ end
assert_equal(ec1, ec2)
end
end