aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/sql/unit/relations/group_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/engines/sql/unit/relations/group_spec.rb')
-rw-r--r--spec/engines/sql/unit/relations/group_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/engines/sql/unit/relations/group_spec.rb b/spec/engines/sql/unit/relations/group_spec.rb
index 72a9f4e99e..c32091bf08 100644
--- a/spec/engines/sql/unit/relations/group_spec.rb
+++ b/spec/engines/sql/unit/relations/group_spec.rb
@@ -10,7 +10,7 @@ module Arel
describe '#to_sql' do
describe 'when given a predicate' do
it "manufactures sql with where clause conditions" do
- sql = Group.new(@relation, @attribute).to_sql
+ sql = Group.new(@relation, [@attribute]).to_sql
adapter_is :mysql do
sql.should be_like(%Q{
@@ -40,7 +40,7 @@ module Arel
describe 'when given a string' do
it "passes the string through to the where clause" do
- sql = Group.new(@relation, 'asdf').to_sql
+ sql = Group.new(@relation, ['asdf']).to_sql
adapter_is :mysql do
sql.should be_like(%Q{