From 9b1a5b49a703a778bed2850f2d9bbe20b2bd0548 Mon Sep 17 00:00:00 2001 From: Will Daly Date: Tue, 3 Sep 2013 21:17:15 -0400 Subject: [PATCH] Pass in harvest args to fasttest_acceptance, not the args array --- rakelib/tests.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakelib/tests.rake b/rakelib/tests.rake index f7c0fbdc4f..b0c8f4979d 100644 --- a/rakelib/tests.rake +++ b/rakelib/tests.rake @@ -111,7 +111,7 @@ TEST_TASK_DIRS = [] desc "Run acceptance tests" task "test_acceptance_#{system}", [:harvest_args] => [:clean_test_files, "#{system}:gather_assets:acceptance"] do |t, args| setup_acceptance_db(system) - Rake::Task["fasttest_acceptance_#{system}"].invoke(*args) + Rake::Task["fasttest_acceptance_#{system}"].invoke(args.harvest_args) end desc "Run acceptance tests without collectstatic or database migrations"