mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/csv] Fix typos [ci skip] (https://github.com/ruby/csv/pull/224)
https://github.com/ruby/csv/commit/27c0b66c8f
This commit is contained in:
parent
083cf6a577
commit
47c53af168
Notes:
git
2021-12-24 14:35:55 +09:00
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ class TestCSVParseConvert < Test::Unit::TestCase
|
|||
@parser.shift)
|
||||
end
|
||||
|
||||
def test_numberic
|
||||
def test_numeric
|
||||
@parser.convert(:numeric)
|
||||
assert_equal(["Numbers", ":integer", 1, ":float", 3.015],
|
||||
@parser.shift)
|
||||
|
|
|
@ -20,7 +20,7 @@ class TestCSVTable < Test::Unit::TestCase
|
|||
@header_only_table = CSV::Table.new([], headers: %w{A B C})
|
||||
end
|
||||
|
||||
def test_initialze
|
||||
def test_initialize
|
||||
assert_not_nil(@table)
|
||||
assert_instance_of(CSV::Table, @table)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue