object.c: fix typo
* object.c (rb_mod_const_get): fix typo. should use SYM2ID() not ID2SYM(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c74995b2af
commit
db318509d5
2
object.c
2
object.c
@ -2084,7 +2084,7 @@ rb_mod_const_get(int argc, VALUE *argv, VALUE mod)
|
||||
}
|
||||
|
||||
if (SYMBOL_P(name)) {
|
||||
id = ID2SYM(name);
|
||||
id = SYM2ID(name);
|
||||
if (!rb_is_const_id(id)) goto wrong_id;
|
||||
return RTEST(recur) ? rb_const_get(mod, id) : rb_const_get_at(mod, id);
|
||||
}
|
||||
|
@ -297,7 +297,7 @@ class TestModule < Test::Unit::TestCase
|
||||
assert_equal [:Foo, :Bar, :Baz], classes
|
||||
end
|
||||
|
||||
def test_nested_bad_class
|
||||
def test_nested_get_bad_class
|
||||
assert_raise(TypeError) do
|
||||
self.class.const_get([User, 'USER', 'Foo'].join('::'))
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user