aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_bin.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/nodes/test_bin.rb')
-rw-r--r--test/nodes/test_bin.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nodes/test_bin.rb b/test/nodes/test_bin.rb
index 1d955b218b..0dcc5f7bb8 100644
--- a/test/nodes/test_bin.rb
+++ b/test/nodes/test_bin.rb
@@ -10,13 +10,13 @@ module Arel
def test_default_to_sql
viz = Arel::Visitors::ToSql.new Table.engine.connection_pool
node = Arel::Nodes::Bin.new(Arel.sql('zomg'))
- assert_equal 'zomg', viz.accept(node)
+ assert_equal 'zomg', viz.accept(node, Collectors::SQLString.new).value
end
def test_mysql_to_sql
viz = Arel::Visitors::MySQL.new Table.engine.connection_pool
node = Arel::Nodes::Bin.new(Arel.sql('zomg'))
- assert_equal 'BINARY zomg', viz.accept(node)
+ assert_equal 'BINARY zomg', viz.accept(node, Collectors::SQLString.new).value
end
def test_equality_with_same_ivars