diff options
author | Jeremy Evans <[email protected]> | 2019-04-07 16:55:34 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2019-08-30 12:39:31 -0700 |
commit | e0b4599bba6bea744e0e90b7640dcc21d695c434 (patch) | |
tree | 50455545fbb97d90acb73e230177607c6b7b6f0a /test/csv/parse/test_general.rb | |
parent | d08e1004e0ee1286e4513de2a170391a4d0a0116 (diff) |
Fix keyword argument separation warnings in test
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2395
Diffstat (limited to 'test/csv/parse/test_general.rb')
-rw-r--r-- | test/csv/parse/test_general.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/csv/parse/test_general.rb b/test/csv/parse/test_general.rb index 49222c7159..f340921854 100644 --- a/test/csv/parse/test_general.rb +++ b/test/csv/parse/test_general.rb @@ -234,10 +234,10 @@ line,5,jkl end private - def assert_parse_errors_out(*args) + def assert_parse_errors_out(*args, **options) assert_raise(CSV::MalformedCSVError) do Timeout.timeout(0.2) do - CSV.parse(*args) + CSV.parse(*args, **options) fail("Parse didn't error out") end end |