/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 bzrlib/tests/test_source.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-11 22:01:49 UTC
  • mfrom: (4115.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090311220149-lp5k8bw0rqr2a7sx
(robertc) Turn test_coding_style into a KnownFailure until it gets
        fixed as per the list. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    )
36
36
import bzrlib.branch
37
37
from bzrlib.tests import (
 
38
    KnownFailure,
38
39
    TestCase,
39
40
    TestSkipped,
40
41
    )
330
331
               '\n\n    %s'
331
332
               % ('\n    '.join(no_newline_at_eof)))
332
333
        if problems:
 
334
            raise KnownFailure("test_coding_style has failed")
333
335
            self.fail('\n\n'.join(problems))
334
336
 
335
337
    def test_no_asserts(self):