/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/per_interrepository/test_interrepository.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
 
1
# Copyright (C) 2006-2009, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
19
19
import sys
20
20
 
21
21
import bzrlib
22
 
import bzrlib.bzrdir as bzrdir
23
 
from bzrlib.branch import Branch, needs_read_lock, needs_write_lock
24
22
import bzrlib.errors as errors
25
23
import bzrlib.gpg
26
24
from bzrlib.inventory import Inventory
27
 
import bzrlib.repository as repository
28
 
from bzrlib.revision import NULL_REVISION, Revision
 
25
from bzrlib.revision import NULL_REVISION
29
26
from bzrlib.tests import (
30
 
    TestCase,
31
 
    TestCaseWithTransport,
32
27
    TestNotApplicable,
33
28
    TestSkipped,
34
29
    )
68
63
    if (isinstance(repo, (AllInOneRepository,
69
64
                          WeaveMetaDirRepository))
70
65
        and sys.platform == 'win32'):
71
 
            raise TestSkipped("funky chars not permitted"
 
66
            raise TestSkipped("funky chars not allowed"
72
67
                              " on this platform in repository"
73
68
                              " %s" % repo.__class__.__name__)
74
69