/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 brzlib/tests/test_rules.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:06:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521180619-5qoo0470asgdnljt
Fix more tests (all?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        if sys.platform == 'win32':
132
132
            self.overrideEnv(
133
133
                'BRZ_HOME', r'C:\Documents and Settings\bogus\Application Data')
134
 
            self.bzr_home = \
135
 
                'C:/Documents and Settings/bogus/Application Data/bazaar/2.0'
 
134
            self.brz_home = \
 
135
                'C:/Documents and Settings/bogus/Application Data/breezy'
136
136
        else:
137
 
            self.bzr_home = '/home/bogus/.bazaar'
 
137
            self.brz_home = '/home/bogus/.config/breezy'
138
138
 
139
139
    def test_rules_filename(self):
140
140
        self.assertEqual(rules.rules_filename(),
141
 
                         self.bzr_home + '/rules')
 
141
                         self.brz_home + '/rules')