~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-31 00:43:21 UTC
  • mfrom: (1551.2.51 win32fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20060331004321-2171d32febcbfe4d
Various fixes for win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
from bzrlib.branch import Branch
7
7
from bzrlib.tests import TestCaseInTempDir
8
 
from bzrlib.config import (config_dir, config_filename)
 
8
from bzrlib.config import (ensure_config_dir_exists, config_filename)
9
9
 
10
10
 
11
11
class TestLogFormats(TestCaseInTempDir):
102
102
                # we risk overwriting users config 
103
103
                self.assert_(config_filename() + "exists, abort")
104
104
            
105
 
        os.mkdir(config_dir())
 
105
        ensure_config_dir_exists()
106
106
        CONFIG=("[DEFAULT]\n"
107
107
                "email=Joe Foo <joe@foo.com>\n"
108
108
                "log_format=line\n")