aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-03-18 17:58:44 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-03-18 17:58:59 -0300
commit4620bdcefd0c88905a005f191496df887877b8f3 (patch)
tree94af7accfab76bebebf15a85e0ca70527268a22a /activerecord/test
parentddd2c75b2668d4a22681c0c39221bbdfb516cd06 (diff)
downloadrails-4620bdcefd0c88905a005f191496df887877b8f3.tar.gz
rails-4620bdcefd0c88905a005f191496df887877b8f3.tar.bz2
rails-4620bdcefd0c88905a005f191496df887877b8f3.zip
Fix failing tests related to where values change to strings
Introduced in 5dc2e3531babcbdc165884d1a47cbcd13455522d.
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/relation_scoping_test.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/activerecord/test/cases/relation_scoping_test.rb b/activerecord/test/cases/relation_scoping_test.rb
index 2b4aadc7ed..239004a223 100644
--- a/activerecord/test/cases/relation_scoping_test.rb
+++ b/activerecord/test/cases/relation_scoping_test.rb
@@ -390,20 +390,20 @@ class DefaultScopingTest < ActiveRecord::TestCase
def test_default_scope_with_inheritance
wheres = InheritedPoorDeveloperCalledJamis.all.where_values_hash
- assert_equal "Jamis", wheres[:name]
- assert_equal 50000, wheres[:salary]
+ assert_equal "Jamis", wheres['name']
+ assert_equal 50000, wheres['salary']
end
def test_default_scope_with_module_includes
wheres = ModuleIncludedPoorDeveloperCalledJamis.all.where_values_hash
- assert_equal "Jamis", wheres[:name]
- assert_equal 50000, wheres[:salary]
+ assert_equal "Jamis", wheres['name']
+ assert_equal 50000, wheres['salary']
end
def test_default_scope_with_multiple_calls
wheres = MultiplePoorDeveloperCalledJamis.all.where_values_hash
- assert_equal "Jamis", wheres[:name]
- assert_equal 50000, wheres[:salary]
+ assert_equal "Jamis", wheres['name']
+ assert_equal 50000, wheres['salary']
end
def test_scope_overwrites_default
@@ -563,7 +563,7 @@ class DefaultScopingTest < ActiveRecord::TestCase
Developer.select("id").unscope("select")
end
- assert_raises(ArgumentError) do
+ assert_raises(ArgumentError) do
Developer.select("id").unscope(5)
end
end