aboutsummaryrefslogtreecommitdiffstats
path: root/test/visitors
diff options
context:
space:
mode:
Diffstat (limited to 'test/visitors')
-rw-r--r--test/visitors/test_bind_visitor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/visitors/test_bind_visitor.rb b/test/visitors/test_bind_visitor.rb
index 79d340e5cd..f0007cabbf 100644
--- a/test/visitors/test_bind_visitor.rb
+++ b/test/visitors/test_bind_visitor.rb
@@ -17,7 +17,7 @@ module Arel
# substitutes binds with values from block
def test_assignment_binds_are_substituted
table = Table.new(:users)
- um = Arel::UpdateManager.new Table.engine
+ um = Arel::UpdateManager.new
bp = Nodes::BindParam.new
um.set [[table[:name], bp]]
visitor = Class.new(Arel::Visitors::ToSql) {