aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/primary_keys_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-15 11:33:21 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-08-15 11:33:21 -0300
commit3c8b50020a054b7e103725a7cf25d9c51d583a63 (patch)
tree6ff08555170dfedf35b50af5a29b29f8c425ccb5 /activerecord/test/cases/primary_keys_test.rb
parentd0cf212cb5a02db1b3df85e1a337ea1fc99d9b3b (diff)
downloadrails-3c8b50020a054b7e103725a7cf25d9c51d583a63.tar.gz
rails-3c8b50020a054b7e103725a7cf25d9c51d583a63.tar.bz2
rails-3c8b50020a054b7e103725a7cf25d9c51d583a63.zip
Revert "Makes AR use AMo to_key implementation"
This reverts commit 36a84a4f15f29b41c7cac2f8de410055006a8a8d.
Diffstat (limited to 'activerecord/test/cases/primary_keys_test.rb')
-rw-r--r--activerecord/test/cases/primary_keys_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/primary_keys_test.rb b/activerecord/test/cases/primary_keys_test.rb
index 5cdcb05902..1e44237e0a 100644
--- a/activerecord/test/cases/primary_keys_test.rb
+++ b/activerecord/test/cases/primary_keys_test.rb
@@ -26,7 +26,7 @@ class PrimaryKeysTest < ActiveRecord::TestCase
def test_to_key_with_primary_key_after_destroy
topic = Topic.find(1)
topic.destroy
- assert_equal nil, topic.to_key
+ assert_equal [1], topic.to_key
end
def test_integer_key