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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-17 11:15:04 UTC
  • mto: (6973.12.2 python3-k)
  • mto: This revision was merged to the branch mainline in revision 7003.
  • Revision ID: jelmer@jelmer.uk-20180617111504-i2eqvqbtfj5bp0t3
s/file/open.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    def test_fetch_ghosts_more(self):
35
35
        self.run_bzr('init')
36
36
        with open('myfile', 'wb') as f:
37
 
            f.write('hello')
 
37
            f.write(b'hello')
38
38
        self.run_bzr('add')
39
39
        self.run_bzr('commit -m hello')
40
40
        self.run_bzr('branch . my_branch')