summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-03 23:53:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-03 23:53:24 +0000
commit5881e4fcd646b5d4c735477f8559ff6982073c5b (patch)
tree4958618b5833ad2b9cdecb80427923a01ae915d1
parentceadcc44141f598532bff6c6f6c5cf90135b1f87 (diff)
downloadruby-5881e4fcd646b5d4c735477f8559ff6982073c5b.tar.gz
ruby-5881e4fcd646b5d4c735477f8559ff6982073c5b.tar.xz
ruby-5881e4fcd646b5d4c735477f8559ff6982073c5b.zip
* test/optparse/test_getopts.rb: changed the class name of test case
to get rid of conflict with test_optparse.rb. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/optparse/test_getopts.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2959174c9..620b16081 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct 4 08:52:30 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * test/optparse/test_getopts.rb: changed the class name of test case
+ to get rid of conflict with test_optparse.rb.
+
Tue Oct 3 21:04:29 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (dyna_in_block): inline using macro.
diff --git a/test/optparse/test_getopts.rb b/test/optparse/test_getopts.rb
index 4cc8bdb65..fdefe5f3e 100644
--- a/test/optparse/test_getopts.rb
+++ b/test/optparse/test_getopts.rb
@@ -1,6 +1,6 @@
require 'test/unit'
-class TestOptionParser < Test::Unit::TestCase
+class TestOptionParserGetopts < Test::Unit::TestCase
def setup
@opt = OptionParser.new
end