/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__annotator.py

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2017-05-26 09:35:13 UTC
  • mfrom: (6634.2.2 next_up_next)
  • Revision ID: breezy.the.bot@gmail.com-20170526093513-funr1gww70uc4mag
Make iterator objects and use of next Python 3 compatible

Merged from https://code.launchpad.net/~gz/brz/next_up_next/+merge/324586

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
        annotation, lines = self.ann.annotate(key)
138
138
        self.assertEqual(expected_annotation, annotation)
139
139
        if exp_text is None:
140
 
            record = self.vf.get_record_stream([key], 'unordered', True).next()
 
140
            record = next(self.vf.get_record_stream([key], 'unordered', True))
141
141
            exp_text = record.get_bytes_as('fulltext')
142
142
        self.assertEqualDiff(exp_text, ''.join(lines))
143
143