From aa088e05dc6b572f24d713534c38d52dd5896347 Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Wed, 20 Feb 2008 05:14:46 +0000 Subject: remove implicit assumption about mysql in the assertion git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8912 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/cases/base_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb index 46982712ca..6cb120f28e 100755 --- a/activerecord/test/cases/base_test.rb +++ b/activerecord/test/cases/base_test.rb @@ -132,8 +132,8 @@ class BasicsTest < ActiveRecord::TestCase end def test_read_attributes_before_type_cast_on_boolean - bool = Booleantest.create({ "value" => false }) - assert_equal 0 , bool.attributes_before_type_cast["value"] + bool = Booleantest.new({ "value" => 0 }) + assert_equal 0, bool.attributes_before_type_cast["value"] end def test_read_attributes_before_type_cast_on_datetime -- cgit v1.2.3