From 7b06cd2e659532b791d2804ec330d22a58e82d39 Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Sat, 30 Jan 2010 16:10:49 -0800 Subject: [PATCH] [Sass] Reset mtimes on SCSS files in PluginTest as well. --- test/sass/plugin_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sass/plugin_test.rb b/test/sass/plugin_test.rb index e13bf33a..a01119e5 100755 --- a/test/sass/plugin_test.rb +++ b/test/sass/plugin_test.rb @@ -356,8 +356,8 @@ CSS def reset_mtimes atime = Time.now - mtime = Time.now - 1 - Dir["{#{template_loc},#{tempfile_loc}}/**/*.{css,sass}"].each {|f| File.utime(atime, mtime, f)} + mtime = Time.now - 5 + Dir["{#{template_loc},#{tempfile_loc}}/**/*.{css,sass,scss}"].each {|f| File.utime(atime, mtime, f)} end def template_loc(name = nil, prefix = nil)