selftest/subunit: Remove prefix command.
[sfrench/samba-autobuild/.git] / selftest / output / subunit.pm
index 5bce99f68f813863c3a60afa99856cdbd208f4e3..3f2d0cf8a670db56cca608ef1184525a1f0dec8e 100644 (file)
@@ -69,16 +69,16 @@ sub end_testsuite($$$$$$)
        Subunit::end_test($name, $result, $reason);
 }
 
-sub start_test($$$)
+sub start_test($$)
 {
-       my ($self, $parents, $testname) = @_;
+       my ($self, $testname) = @_;
 
        Subunit::start_test($testname);
 }
 
 sub end_test($$$$$)
 {
-       my ($self, $parents, $testname, $result, $unexpected, $reason) = @_;
+       my ($self, $testname, $result, $unexpected, $reason) = @_;
 
        if ($result eq "fail" and not $unexpected) { $result = "xfail"; }