From 78fffac66895b0239b83138d19ae09b32718cb5b Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Mon, 24 May 2010 20:34:25 -0300 Subject: Fix test incorrectly using a bare assert to use assert_kind_of Signed-off-by: Jeremy Kemper --- activesupport/test/core_ext/time_with_zone_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport/test/core_ext/time_with_zone_test.rb') diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb index 77b1893f77..2cf5bd6ea9 100644 --- a/activesupport/test/core_ext/time_with_zone_test.rb +++ b/activesupport/test/core_ext/time_with_zone_test.rb @@ -326,7 +326,7 @@ class TimeWithZoneTest < Test::Unit::TestCase def test_is_a assert_kind_of Time, @twz assert_kind_of Time, @twz - assert ActiveSupport::TimeWithZone, @twz + assert_kind_of ActiveSupport::TimeWithZone, @twz end def test_class_name -- cgit v1.2.3