1
0
Fork 0
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:
Nobuyoshi Nakada 2021-11-04 09:02:47 +09:00 committed by Sutou Kouhei
parent 083cf6a577
commit 47c53af168
Notes: git 2021-12-24 14:35:55 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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