Skip to content

Commit

Permalink
fixing whitespace errors. 💣
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Mar 26, 2011
1 parent 9d7ef79 commit 7643dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activerecord/test/cases/attribute_methods_test.rb
Expand Up @@ -119,11 +119,11 @@ def test_read_attributes_before_type_cast_on_boolean
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
Expand Down

0 comments on commit 7643dfd

Please sign in to comment.