From 08bb7d3d1927e077aa027ef19cc6ef5c1327aaed Mon Sep 17 00:00:00 2001 From: k0kubun Date: Tue, 26 Sep 2017 10:45:14 +0000 Subject: [PATCH] test_features.rb: fix unused variable warning test/csv/test_features.rb:357: warning: assigned but unused variable - csv git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/csv/test_features.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/csv/test_features.rb b/test/csv/test_features.rb index 8acd744b73..6b73093ad3 100755 --- a/test/csv/test_features.rb +++ b/test/csv/test_features.rb @@ -354,7 +354,7 @@ class TestCSV::Features < TestCSV end def test_comment_rows_are_ignored_with_heredoc - c = csv = CSV.new(<<~EOL, skip_lines: ".") + c = CSV.new(<<~EOL, skip_lines: ".") 1,foo .2,bar 3,baz