From 3a69faf1303a1d84f37eb7c0b468f79d6a4965c0 Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Tue, 28 Aug 2012 14:12:29 -0300 Subject: [PATCH] use full task name --- lib/tasks/plugins_tests.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/plugins_tests.rake b/lib/tasks/plugins_tests.rake index f6e7f6c..ff28b5a 100644 --- a/lib/tasks/plugins_tests.rake +++ b/lib/tasks/plugins_tests.rake @@ -87,8 +87,8 @@ namespace :test do end { :units => :unit , :functionals => :functional , :integration => :integration }.each do |taskname,folder| - task taskname => 'db:test:plugins:prepare' do - run_tests taskname, "plugins/{#{enabled_plugins.join(',')}}/test/#{folder}/**/*.rb" + task taskname => 'db:test:plugins:prepare' do |t| + run_tests t.name, "plugins/{#{enabled_plugins.join(',')}}/test/#{folder}/**/*.rb" end end -- libgit2 0.21.2