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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 10:19:02 UTC
  • mfrom: (6973.7.13 python3-g-real)
  • Revision ID: breezy.the.bot@gmail.com-20180630101902-thpqkbi44kqom06g
Fix more tests.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
        # Build up 2 trees and prepare for a pull
278
278
        tree_a = self.make_branch_and_tree('branch_a')
279
279
        with open('branch_a/a', 'wb') as f:
280
 
            f.write('hello')
 
280
            f.write(b'hello')
281
281
        tree_a.add('a')
282
282
        tree_a.commit('message')
283
283
 
285
285
 
286
286
        # Make a change to 'a' that 'b' can pull
287
287
        with open('branch_a/a', 'wb') as f:
288
 
            f.write('hey there')
 
288
            f.write(b'hey there')
289
289
        tree_a.commit('message')
290
290
 
291
291
        # Create the bundle for 'b' to pull