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

Replace tab with 8 spaces [Fix GH-1068]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52289 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-10-26 13:43:05 +00:00
parent 05bf12f7df
commit 4a6dff84f0

View file

@ -301,8 +301,8 @@ class TestModule < Test::Unit::TestCase
classes = []
klass = Class.new {
define_singleton_method(:const_missing) { |name|
classes << name
klass
classes << name
klass
}
}
klass.const_get("Foo::Bar::Baz")