summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-26 13:31:23 +0000
committertarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-26 13:31:23 +0000
commit18a7dade10a06a66ba9415ee8e2cc1f0dc98d20a (patch)
tree250f02dd711df953c3b54e779e1b99682e63ccd3 /test
parent2128f208639a6eb828294b89b34bd972b3494913 (diff)
* test/ruby/test_autoload.rb (class TestAutoload): change load target
from Continuation to Date. Becouse Continuation is no longer quiet. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_autoload.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_autoload.rb b/test/ruby/test_autoload.rb
index b2b969a749..a95c27451b 100644
--- a/test/ruby/test_autoload.rb
+++ b/test/ruby/test_autoload.rb
@@ -4,10 +4,10 @@ require 'thread'
class TestAutoload < Test::Unit::TestCase
def test_autoload_so
- # Continuation is always available, unless excluded intentionally.
+ # Date is always available, unless excluded intentionally.
assert_in_out_err([], <<-INPUT, [], [])
- autoload :Continuation, "continuation"
- begin Continuation; rescue LoadError; end
+ autoload :Date, "date"
+ begin Date; rescue LoadError; end
INPUT
end