aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_crud.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_crud.rb')
-rw-r--r--test/test_crud.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_crud.rb b/test/test_crud.rb
index fe3e4f2e02..ded1b632b7 100644
--- a/test/test_crud.rb
+++ b/test/test_crud.rb
@@ -45,7 +45,7 @@ module Arel
table = Table.new :users
fc = FakeCrudder.new
fc.from table
- stmt = fc.compile_update [[table[:id], 'foo']]
+ stmt = fc.compile_update [[table[:id], 'foo']], table.primary_key
assert_instance_of Arel::UpdateManager, stmt
end
end