diff options
| author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-06 01:13:20 +0000 |
|---|---|---|
| committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-06 01:13:20 +0000 |
| commit | 9c13299b6cb37f0f065c6ab79a0440db521db2e4 (patch) | |
| tree | 935dfd1eb8722753c26e48da528ba9d2a385f504 | |
| parent | 5fe53ffa45fc5ae1eddb9114e7773a0d3f46ddec (diff) | |
| download | ruby-9c13299b6cb37f0f065c6ab79a0440db521db2e4.tar.gz ruby-9c13299b6cb37f0f065c6ab79a0440db521db2e4.tar.xz ruby-9c13299b6cb37f0f065c6ab79a0440db521db2e4.zip | |
* lib/test/unit/collector/objectspace.rb
(Test::Unit::Collector::ObjectSpace::NAME): fix a typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/test/unit/collector/objectspace.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun Jul 6 10:12:21 2008 Kouhei Sutou <kou@cozmixng.org> + + * lib/test/unit/collector/objectspace.rb + (Test::Unit::Collector::ObjectSpace::NAME): fix a typo. + Sun Jul 6 00:56:51 2008 Tanaka Akira <akr@fsij.org> * ext/socket/socket.c (host_str): fix type mismatch in rb_raise diff --git a/lib/test/unit/collector/objectspace.rb b/lib/test/unit/collector/objectspace.rb index a6136e37b..4a768c721 100644 --- a/lib/test/unit/collector/objectspace.rb +++ b/lib/test/unit/collector/objectspace.rb @@ -10,7 +10,7 @@ module Test class ObjectSpace include Test::Unit::Collector - NAME = 'collected from the subclasses of TestSuite' + NAME = 'collected from the subclasses of TestCase' def initialize(source=nil) super() |
