aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 8ab372e08c..aa48ea58e4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -16,7 +16,7 @@ def run_without_aborting(*tasks)
abort "Errors running #{errors.join(', ')}" if errors.any?
end
-task :default => :test
+task default: :test
desc 'Run all adapter tests'
task :test do
@@ -32,7 +32,7 @@ end
end
namespace adapter do
- task :test => "test_#{adapter}"
+ task test: "test_#{adapter}"
task(:env) { ENV['AJADAPTER'] = adapter }
end