aboutsummaryrefslogtreecommitdiffstats
path: root/test/visitors/test_sqlite.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/visitors/test_sqlite.rb')
-rw-r--r--test/visitors/test_sqlite.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/visitors/test_sqlite.rb b/test/visitors/test_sqlite.rb
index c06f554ea4..8fb8e76095 100644
--- a/test/visitors/test_sqlite.rb
+++ b/test/visitors/test_sqlite.rb
@@ -10,13 +10,13 @@ module Arel
it 'defaults limit to -1' do
stmt = Nodes::SelectStatement.new
stmt.offset = Nodes::Offset.new(1)
- sql = @visitor.accept(stmt)
+ sql = @visitor.accept(stmt, Collectors::SQLString.new).value
sql.must_be_like "SELECT LIMIT -1 OFFSET 1"
end
it 'does not support locking' do
node = Nodes::Lock.new(Arel.sql('FOR UPDATE'))
- @visitor.accept(node).must_be_nil
+ assert_equal '', @visitor.accept(node, Collectors::SQLString.new).value
end
end
end