Skip to content

Commit

Permalink
Fix ActiveResource load test for 64bit machines [#3051 state:resolved]
Browse files Browse the repository at this point in the history
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
  • Loading branch information
rubymerchant authored and lifo committed Aug 15, 2009
1 parent 26e4d68 commit a363dba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions activeresource/test/base/load_test.rb
Expand Up @@ -52,8 +52,8 @@ def setup
:notable_rivers => [
{ :id => 1, :name => 'Willamette' },
{ :id => 2, :name => 'Columbia', :rafted_by => @matz }],
:postal_codes => [97018,1234567890],
:places => ["Columbia City", "Unknown"]}}}
:postal_codes => [ 97018, 1234567890 ],
:places => [ "Columbia City", "Unknown" ]}}}

@person = Person.new
end
Expand Down Expand Up @@ -135,7 +135,7 @@ def test_recursively_loaded_collections
assert_equal 2, postal_codes.size
assert_kind_of Fixnum, postal_codes.first
assert_equal @deep[:street][:state][:postal_codes].first, postal_codes.first
assert_kind_of Bignum, postal_codes.last
assert_kind_of Numeric, postal_codes.last
assert_equal @deep[:street][:state][:postal_codes].last, postal_codes.last

places = state.places
Expand Down

0 comments on commit a363dba

Please sign in to comment.