/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-08-08 02:14:32 UTC
  • mfrom: (7063 work)
  • mto: This revision was merged to the branch mainline in revision 7065.
  • Revision ID: jelmer@jelmer.uk-20180808021432-nomib3je4cu2xqkm
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3286
3286
                stream.write("%s\n" % (t.id()))
3287
3287
        return True
3288
3288
    result = runner.run(suite)
3289
 
    if strict:
 
3289
    if strict and getattr(result, 'wasStrictlySuccessful', False):
3290
3290
        return result.wasStrictlySuccessful()
3291
3291
    else:
3292
3292
        return result.wasSuccessful()