aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2006-01-14 08:43:27 +0000
committerMichael Koziarski <michael@koziarski.com>2006-01-14 08:43:27 +0000
commit6258829ebf4cad5cbc487b87799d1d40c04a66c4 (patch)
tree6d341d56bc161853823e53d8fe6ad536bca11f30
parentf41feb349caed7580ba0493e3bb2e393cdb45ddb (diff)
downloadrails-6258829ebf4cad5cbc487b87799d1d40c04a66c4.tar.gz
rails-6258829ebf4cad5cbc487b87799d1d40c04a66c4.tar.bz2
rails-6258829ebf4cad5cbc487b87799d1d40c04a66c4.zip
Fix test error caused by operator error with last commit
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3418 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-xactiverecord/test/base_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb
index 4de720a176..5c70768436 100755
--- a/activerecord/test/base_test.rb
+++ b/activerecord/test/base_test.rb
@@ -145,7 +145,7 @@ class BasicsTest < Test::Unit::TestCase
assert_equal new_topic[:title], topic.title
topic.attributes= new_topic_values
- assert_equal new_topic_value[:title], topic.title
+ assert_equal new_topic_values[:title], topic.title
end
def test_create_many