about summary refs log tree commit homepage
path: root/test/inherit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/inherit.rb')
-rw-r--r--test/inherit.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/inherit.rb b/test/inherit.rb
index 07b3841..ebbcf4c 100644
--- a/test/inherit.rb
+++ b/test/inherit.rb
@@ -91,7 +91,6 @@ class TestInherit < Test::Unit::TestCase
 
     # still works since drop is open in _this_ process
     c = TCPSocket.new(@host, drop_port)
-    assert_instance_of(TCPSocket, c)
     @to_close << c
 
     # drop is no longer valid after this:
@@ -169,7 +168,6 @@ class TestInherit < Test::Unit::TestCase
 
     # still works since drop is open in _this_ process
     c = TCPSocket.new(@host, mport)
-    assert_instance_of(TCPSocket, c)
     @to_close << c
     c.write "hello\n"
     assert_match(/ERROR: unknown command/, c.gets)