From f064664de72a34d24568eadf7340f41876df4b20 Mon Sep 17 00:00:00 2001 From: Jon Leighton Date: Wed, 1 Jun 2011 23:13:40 +0100 Subject: [PATCH] Fix broken test. You know, the merge button will be the end of us... --- activerecord/test/cases/attribute_methods_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb index 2712fa8e1d..b0896fb236 100644 --- a/activerecord/test/cases/attribute_methods_test.rb +++ b/activerecord/test/cases/attribute_methods_test.rb @@ -135,10 +135,10 @@ def test_read_attributes_before_type_cast def test_read_attributes_before_type_cast_on_boolean bool = Boolean.create({ "value" => false }) if RUBY_PLATFORM =~ /java/ - #JRuby will returns the value before typecast as integer - assert_equal 0, bool.reload.attributes_before_type_cast["value"] - else + # JRuby will return the value before typecast as string assert_equal "0", bool.reload.attributes_before_type_cast["value"] + else + assert_equal 0, bool.reload.attributes_before_type_cast["value"] end end end -- GitLab