diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-06 16:59:51 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-06 17:00:08 -0700 |
commit | cd27cd5e495d803750c3fc34e74365353cb6938b (patch) | |
tree | 9705d58a6049a2b32f6252c1d2397ab15d15956e /activerecord | |
parent | 8392f10b58fe3f95b99131da89d9c3fd561bd2e6 (diff) | |
download | rails-cd27cd5e495d803750c3fc34e74365353cb6938b.tar.gz rails-cd27cd5e495d803750c3fc34e74365353cb6938b.tar.bz2 rails-cd27cd5e495d803750c3fc34e74365353cb6938b.zip |
oops! add parens so the block is properly bound
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 8b0f76048f..71200abf69 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -68,7 +68,7 @@ end task :isolated_test => "isolated_test_#{adapter}" # Set the connection environment for the adapter - task :env { ENV['ARCONN'] = adapter } + task(:env) { ENV['ARCONN'] = adapter } end # Make sure the adapter test evaluates the env setting task |