commit 3dcf6860246aa95e26cc7654bd253b78a467f889
parent 6af71622e11d2de08a74cc3ed81e26e72ae3fbd7
Author: Rich Lane <rlane@club.cc.cmu.edu>
Date: Tue, 11 Nov 2008 12:52:50 -0500
fix class name collision in testcases
'rake test' was broken because both testcases' classes had the same name and
the setup method was overridden. This patch changes the class name in
test_mbox_parsing.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test_mbox_parsing.rb b/test/test_mbox_parsing.rb
@@ -6,7 +6,7 @@ require 'stringio'
include Redwood
-class TestMessage < Test::Unit::TestCase
+class TestMBoxParsing < Test::Unit::TestCase
def setup
end