aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--test/rake/test_application.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 982bcd740d..a14bbfab51 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun May 30 21:51:59 2010 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * test/rake/test_application.rb: update a test because of r28089.
+
Sun May 30 21:48:07 2010 Yusuke Endoh <mame@tsg.ne.jp>
* lib/tempfile.rb (Tempfile#unlink): leave @data. Assigning nil to
diff --git a/test/rake/test_application.rb b/test/rake/test_application.rb
index 77f9859b24..9158689e65 100644
--- a/test/rake/test_application.rb
+++ b/test/rake/test_application.rb
@@ -438,7 +438,7 @@ class Rake::TestApplicationOptions < Test::Unit::TestCase
flags(['--require', File.expand_path('../missing', __FILE__)]) do |opts|
end
end
- assert_match(/no such file/, ex.message)
+ assert_match(/cannot load such file/, ex.message)
assert_match(/#{File.basename(File.dirname(__FILE__))}\/missing/, ex.message)
end