diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-20 01:17:45 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-20 01:17:45 +0000 |
commit | 8612344834d40187f5bade4237cf6f3c60930deb (patch) | |
tree | fbc37a20fac4638498aff25603b11e271726b83c /lib | |
parent | b8ef79884b8cc592a46b21ac47da803bfab8a107 (diff) | |
download | ruby-8612344834d40187f5bade4237cf6f3c60930deb.tar.gz |
fix `<module:MiniTest>': Unit is not a module (TypeError)
http://u64b.rubyci.org/~chkbuild/ruby-trunk/log/20130819T183302Z.log.html.gz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42633 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/test/unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb index 9c12a44bb7..13a993fc6c 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -857,7 +857,7 @@ module Test end module MiniTest # :nodoc: all - module Unit + class Unit end end |