1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typos

This commit is contained in:
Kazuki Tsujimoto 2019-11-09 21:12:29 +09:00
parent fdfad90522
commit 79f0e7aafd
No known key found for this signature in database
GPG key ID: BCEA306C49B81CD7

View file

@ -3,7 +3,7 @@ require 'test/unit'
require "-test-/struct"
class Bug::Struct::Test_Duplicate < Test::Unit::TestCase
def test_new_dupilicate
def test_new_duplicate
bug12291 = '[ruby-core:74971] [Bug #12291]'
assert_raise_with_message(ArgumentError, /duplicate member/, bug12291) {
Bug::Struct.new_duplicate(nil, "a")
@ -13,7 +13,7 @@ class Bug::Struct::Test_Duplicate < Test::Unit::TestCase
}
end
def test_new_dupilicate_under
def test_new_duplicate_under
bug12291 = '[ruby-core:74971] [Bug #12291]'
assert_raise_with_message(ArgumentError, /duplicate member/, bug12291) {
Bug::Struct.new_duplicate_under("x", "a")