From 9cadc95b28da1cf6ca8f802292d12cc96a4f2c2d Mon Sep 17 00:00:00 2001 From: drbrain Date: Fri, 11 Oct 2013 21:35:01 +0000 Subject: * NEWS (with all sufficient information): * lib/rake: Update to rake 10.1.0 * bin/rake: ditto. * test/rake: ditto. * NEWS: Update NEWS to include rake 10.1.0 and links to release notes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rake/test_rake_file_creation_task.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/rake/test_rake_file_creation_task.rb') diff --git a/test/rake/test_rake_file_creation_task.rb b/test/rake/test_rake_file_creation_task.rb index d486d2f0d4..d8dcd965a3 100644 --- a/test/rake/test_rake_file_creation_task.rb +++ b/test/rake/test_rake_file_creation_task.rb @@ -21,7 +21,7 @@ class TestRakeFileCreationTask < Rake::TestCase FileUtils.rm_rf fc_task.name assert fc_task.needed?, "file should be needed" FileUtils.mkdir fc_task.name - assert_equal nil, fc_task.prerequisites.collect{|n| Task[n].timestamp}.max + assert_equal nil, fc_task.prerequisites.map { |n| Task[n].timestamp }.max assert ! fc_task.needed?, "file should not be needed" end @@ -51,6 +51,6 @@ class TestRakeFileCreationTask < Rake::TestCase def test_very_early_timestamp t1 = Rake.application.intern(FileCreationTask, OLDFILE) assert t1.timestamp < Time.now - assert t1.timestamp < Time.now - 1000000 + assert t1.timestamp < Time.now - 1_000_000 end end -- cgit v1.2.3