/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/blackbox/test_cat_revision.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-25 03:06:42 UTC
  • mfrom: (7045.3.4 python3-r)
  • Revision ID: breezy.the.bot@gmail.com-20180725030642-oghhedvui3470wy6
Fix another ~500 tests on Python 3.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        with r.lock_read():
41
41
            revs = {}
42
42
            for i in (1, 2, 3):
43
 
                revid = "a@r-0-%d" % i
 
43
                revid = b"a@r-0-%d" % i
44
44
                stream = r.revisions.get_record_stream([(revid,)], 'unordered', 
45
45
                                                       False) 
46
46
                revs[i] = next(stream).get_bytes_as('fulltext')