From 0e1dd3d490a50b94880e3b81a132732bc674d26a Mon Sep 17 00:00:00 2001 From: Courtland Caldwell Date: Mon, 23 Mar 2015 16:20:47 -0700 Subject: Fix a typo in the sql literal spec for grouped "and" equality --- test/nodes/test_sql_literal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/nodes/test_sql_literal.rb b/test/nodes/test_sql_literal.rb index ed602cc47d..c09e5882d5 100644 --- a/test/nodes/test_sql_literal.rb +++ b/test/nodes/test_sql_literal.rb @@ -56,7 +56,7 @@ module Arel end describe 'grouped "and" equality' do - it 'makes a grouping node with an or node' do + it 'makes a grouping node with an and node' do node = SqlLiteral.new('foo').eq_all([1,2]) compile(node).must_be_like %{ (foo = 1 AND foo = 2) } end -- cgit v1.2.3