aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-10-07 15:40:24 -0400
committerGitHub <noreply@github.com>2016-10-07 15:40:24 -0400
commit029041a4dcb2526224ee03efaf242fb84eb442ec (patch)
treef33849a57fac11accd5e3ba3a09c7670c4f47ad4 /test
parent3eddc2fd444c8a0a5f6c96614874d1437b5b55ab (diff)
parenta091539febd3a5a9e5306924b38e0dd681de4a07 (diff)
downloadrails-029041a4dcb2526224ee03efaf242fb84eb442ec.tar.gz
rails-029041a4dcb2526224ee03efaf242fb84eb442ec.tar.bz2
rails-029041a4dcb2526224ee03efaf242fb84eb442ec.zip
Merge pull request #447 from ojab/master
Freeze all the strings in visitors
Diffstat (limited to 'test')
-rw-r--r--test/visitors/test_oracle12.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/visitors/test_oracle12.rb b/test/visitors/test_oracle12.rb
index 5dac2994cf..43235fd72c 100644
--- a/test/visitors/test_oracle12.rb
+++ b/test/visitors/test_oracle12.rb
@@ -35,7 +35,7 @@ module Arel
stmt.limit = Nodes::Limit.new(10)
stmt.lock = Nodes::Lock.new(Arel.sql('FOR UPDATE'))
assert_raises ArgumentError do
- sql = compile(stmt)
+ compile(stmt)
end
end