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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-18 02:13:57 UTC
  • mto: (6973.12.2 python3-k)
  • mto: This revision was merged to the branch mainline in revision 7004.
  • Revision ID: jelmer@jelmer.uk-20180618021357-xz802zqfmrf7zv1z
More test fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
    def test_gen_root_id(self):
105
105
        # Mostly just make sure gen_root_id() exists
106
106
        root_id = generate_ids.gen_root_id()
107
 
        self.assertStartsWith(root_id, 'tree_root-')
 
107
        self.assertStartsWith(root_id, b'tree_root-')
108
108
 
109
109
 
110
110
class TestGenRevisionId(tests.TestCase):