/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 breezy/plugins/git/tests/test_cache.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 12:37:04 UTC
  • mfrom: (6973.10.9 python3-i)
  • Revision ID: breezy.the.bot@gmail.com-20180630123704-jq2qazweqd3u5ssp
Add more bees.

Merged from https://code.launchpad.net/~jelmer/brz/python3-i/+merge/348244

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
    def setUp(self):
167
167
        TestCaseInTempDir.setUp(self)
168
168
        try:
169
 
            self.cache = TdbBzrGitCache(
170
 
                os.path.join(self.test_dir, 'foo.tdb').encode(osutils._fs_enc))
 
169
            self.cache = TdbBzrGitCache(os.path.join(self.test_dir, 'foo.tdb'))
171
170
        except ImportError:
172
171
            raise UnavailableFeature("Missing tdb")
173
172
        self.map = self.cache.idmap