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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-29 17:57:21 UTC
  • mto: This revision was merged to the branch mainline in revision 7026.
  • Revision ID: jelmer@jelmer.uk-20180629175721-ptg2fk3k2lul7lch
Fix some more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2665
2665
        self.addCleanup(repo.unlock)
2666
2666
        self.reset_smart_call_log()
2667
2667
        graph = repo.get_graph()
2668
 
        # Query for 'first' and 'null:'.  Because 'null:' is a parent of
 
2668
        # Query for b'first' and b'null:'.  Because b'null:' is a parent of
2669
2669
        # 'first' it will be a candidate for the stop_keys of subsequent
2670
 
        # requests, and because 'null:' was queried but not returned it will be
 
2670
        # requests, and because b'null:' was queried but not returned it will be
2671
2671
        # cached as missing.
2672
2672
        self.assertEqual({b'first': (b'null:',)},
2673
2673
            graph.get_parent_map([b'first', b'null:']))