aboutsummaryrefslogtreecommitdiffstats
path: root/test/csv/parse/test_rewind.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/parse/test_rewind.rb')
-rw-r--r--test/csv/parse/test_rewind.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/csv/parse/test_rewind.rb b/test/csv/parse/test_rewind.rb
index 73a69e9ccd..43fd8da159 100644
--- a/test/csv/parse/test_rewind.rb
+++ b/test/csv/parse/test_rewind.rb
@@ -7,7 +7,7 @@ class TestCSVParseRewind < Test::Unit::TestCase
extend DifferentOFS
def parse(data, options={})
- csv = CSV.new(data, options)
+ csv = CSV.new(data, **options)
records = csv.to_a
csv.rewind
[records, csv.to_a]