Index: t/pmc/parrotobject.t
===================================================================
--- t/pmc/parrotobject.t	(revision 18494)
+++ t/pmc/parrotobject.t	(working copy)
@@ -6,7 +6,7 @@
 use warnings;
 use lib qw( . lib ../lib ../../lib );
 use Test::More;
-use Parrot::Test tests => 11;
+use Parrot::Test tests => 10;
 
 =head1 NAME
 
@@ -195,7 +195,7 @@
 pir_output_is( <<'CODE', <<'OUT', 'RT#41733 - Execution ends after returning from invoke' );
 .namespace ['Foo']
 
-.sub invoke :vtable
+.sub invoke :vtable :method
 say "you invoked me!"
 .return()
 .end
@@ -214,7 +214,7 @@
 pir_output_is( <<'CODE', <<'OUT', 'params/returns from overridden invoke' );
 .namespace ['Foo']
 
-.sub invoke :vtable
+.sub invoke :vtable :method
   .param int a
   print a
   print "\n"
@@ -234,23 +234,6 @@
 3
 OUT
 
-pir_output_like( <<'CODE', <<'OUT', 'RT#41732' );
-.namespace ['Foo']
-
-.sub invoke :vtable
-  .param pmc a
-  say 'hi'
-.end
-
-.sub main :main
-    $P0 = newclass "Foo"
-    $P1 = new "Foo"
-    $P1()
-.end
-CODE
-/1 params expected/
-OUT
-
 # '
 
 # Local Variables:
