/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_bundle.py

  • Committer: Alexander Belchenko
  • Date: 2007-10-04 05:50:44 UTC
  • mfrom: (2881 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2884.
  • Revision ID: bialix@ukr.net-20071004055044-pb88kgkfayawro8n
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
from bzrlib.tests import (TestCaseInTempDir, TestCaseWithTransport,
45
45
                          TestCase, TestSkipped, test_commit)
46
46
from bzrlib.transform import TreeTransform
47
 
from bzrlib.workingtree import WorkingTree
48
47
 
49
48
 
50
49
class MockTree(object):
795
794
                          rev_id='i18n-1', committer=u'William Dod\xe9')
796
795
 
797
796
        if sys.platform == 'darwin':
 
797
            from bzrlib.workingtree import WorkingTree3
 
798
            if type(self.tree1) is WorkingTree3:
 
799
                self.knownFailure("Bug #141438: fails for WorkingTree3 on OSX")
 
800
 
798
801
            # On Mac the '\xe9' gets changed to 'e\u0301'
799
802
            self.assertEqual([u'.bzr', u'with Dode\u0301'],
800
803
                             sorted(os.listdir(u'b1')))