aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/nodes/update_statement_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/nodes/update_statement_spec.rb')
-rw-r--r--spec/arel/nodes/update_statement_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/arel/nodes/update_statement_spec.rb b/spec/arel/nodes/update_statement_spec.rb
index 8cbca1fd73..3d425e2843 100644
--- a/spec/arel/nodes/update_statement_spec.rb
+++ b/spec/arel/nodes/update_statement_spec.rb
@@ -15,8 +15,8 @@ describe Arel::Nodes::UpdateStatement do
end
dolly = statement.clone
- dolly.wheres.should == %w[a0 b1 c2]
- dolly.values.should == %w[x0 y1 z2]
+ check dolly.wheres.should == %w[a0 b1 c2]
+ check dolly.values.should == %w[x0 y1 z2]
end
end
end