~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_reference.py

  • Committer: Ross Lagerwall
  • Date: 2012-08-07 06:32:51 UTC
  • mto: (6437.63.5 2.5)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: rosslagerwall@gmail.com-20120807063251-x9p03ghg2ws8oqjc
Add bzrlib/locale to .bzrignore

bzrlib/locale is generated with ./setup.py build_mo which is in turn called
by ./setup.py build

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
from bzrlib import (
19
19
    branch as _mod_branch,
20
 
    controldir,
 
20
    bzrdir,
21
21
    )
22
22
from bzrlib.tests import TestCaseWithTransport
23
23
 
25
25
class TestReference(TestCaseWithTransport):
26
26
 
27
27
    def get_default_format(self):
28
 
        format = controldir.format_registry.make_bzrdir('1.9')
 
28
        format = bzrdir.format_registry.make_bzrdir('1.9')
29
29
        format.set_branch_format(_mod_branch.BzrBranchFormat8())
30
30
        return format
31
31