diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-13 21:42:32 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-14 10:54:27 +0200 |
commit | 881f610f06fc644bbbd146d939be5cd1adc19a73 (patch) | |
tree | e3e70188906faccbbd1f03d2d606f4ec539b6e15 /selftest/format-subunit | |
parent | 1626dc2bc95ef1c17221ba1a6404a72e21fcfc5b (diff) | |
download | samba-881f610f06fc644bbbd146d939be5cd1adc19a73.tar.gz samba-881f610f06fc644bbbd146d939be5cd1adc19a73.tar.bz2 samba-881f610f06fc644bbbd146d939be5cd1adc19a73.zip |
subunit: Pass TestCase objects to startTest rather than test name strings.
Diffstat (limited to 'selftest/format-subunit')
-rwxr-xr-x | selftest/format-subunit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/format-subunit b/selftest/format-subunit index 25cc206fef..b949d8e9aa 100755 --- a/selftest/format-subunit +++ b/selftest/format-subunit @@ -122,7 +122,7 @@ class PlainFormatter(subunithelper.TestsuiteEnabledTestResult): sys.stdout.write(out) - def startTest(self, testname): + def startTest(self, test): pass def end_test(self, testname, result, unexpected, reason=None): |