diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-03-25 12:10:11 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-03-25 12:10:11 -0700 |
commit | 7333f50abce3ad6c83d13c66b85e371e7951c84d (patch) | |
tree | bffda41c174af4a31ab0ba36a5898ee95936cd22 /activerecord | |
parent | 5170d210e84ab38fa93a1346ebe32b12e75d72bc (diff) | |
download | rails-7333f50abce3ad6c83d13c66b85e371e7951c84d.tar.gz rails-7333f50abce3ad6c83d13c66b85e371e7951c84d.tar.bz2 rails-7333f50abce3ad6c83d13c66b85e371e7951c84d.zip |
fixing whitespace errors. :bomb:
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/attribute_methods_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb index d8638ee776..d03c3ee1a1 100644 --- a/activerecord/test/cases/attribute_methods_test.rb +++ b/activerecord/test/cases/attribute_methods_test.rb @@ -120,11 +120,11 @@ class AttributeMethodsTest < ActiveRecord::TestCase def test_read_attributes_before_type_cast_on_datetime in_time_zone "Pacific Time (US & Canada)" do record = @target.new - + record.written_on = "345643456" assert_equal "345643456", record.written_on_before_type_cast assert_equal nil, record.written_on - + record.written_on = "2009-10-11 12:13:14" assert_equal "2009-10-11 12:13:14", record.written_on_before_type_cast assert_equal Time.zone.parse("2009-10-11 12:13:14"), record.written_on |