Revision
129
Author
lsansonetti@apple.com
Date
2008-04-01 17:47:10 -0700 (Tue, 01 Apr 2008)

Log Message

hashes are not direct instance of Hash anymore

Modified Paths

Diff

Modified: MacRuby/trunk/test/ruby/test_hash.rb (128 => 129)


--- MacRuby/trunk/test/ruby/test_hash.rb	2008-04-02 00:16:16 UTC (rev 128)
+++ MacRuby/trunk/test/ruby/test_hash.rb	2008-04-02 00:47:10 UTC (rev 129)
@@ -105,12 +105,12 @@
 
   def test_s_new
     h = @cls.new
-    assert_instance_of(@cls, h)
+    assert_kind_of(@cls, h)
     assert_nil(h.default)
     assert_nil(h['spurious'])
 
     h = @cls.new('default')
-    assert_instance_of(@cls, h)
+    assert_kind_of(@cls, h)
     assert_equal('default', h.default)
     assert_equal('default', h['spurious'])