/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: Robert Collins
  • Date: 2009-03-11 20:59:20 UTC
  • mto: This revision was merged to the branch mainline in revision 4116.
  • Revision ID: robertc@robertcollins.net-20090311205920-w7q5yrxy8prc3jjm
Turn test_coding_style into a KnownFailure until it gets fixed as per the list.

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):