/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/repodebug/tests/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-06 01:18:08 UTC
  • mfrom: (7143 work)
  • mto: This revision was merged to the branch mainline in revision 7151.
  • Revision ID: jelmer@jelmer.uk-20181106011808-y870f4vq0ork3ahu
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        tree.add('foo')
47
47
        revid = tree.commit('a commit')
48
48
        out, err = self.run_bzr(
49
 
                'file-refs ' + tree.path2id('foo') + ' ' + revid)
50
 
        self.assertEqual(out, revid + '\n')
 
49
                'file-refs ' + tree.path2id('foo').decode() + ' ' + revid.decode())
 
50
        self.assertEqual(out, revid.decode('utf-8') + '\n')
51
51
        self.assertEqual(err, '')
52
52
 
53
53
    def test_fix_missing_keys_for_stacking(self):