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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-15 13:10:28 UTC
  • mto: (6973.12.2 python3-k)
  • mto: This revision was merged to the branch mainline in revision 6993.
  • Revision ID: jelmer@jelmer.uk-20180615131028-abolpmqrid8th0cd
More bees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
            self.assertTransportMode(t, 'a', 0o666 &~umask)
261
261
 
262
262
            # but Transport overrides umask
263
 
            t.put_bytes('b', 'txt', mode=0o666)
 
263
            t.put_bytes('b', b'txt', mode=0o666)
264
264
            self.assertTransportMode(t, 'b', 0o666)
265
265
 
266
266
            t._get_sftp().mkdir('c', mode=0o777)