/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 bzrlib/tests/test_permissions.py

  • Committer: Robert Collins
  • Date: 2007-08-07 22:59:45 UTC
  • mfrom: (2681 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2682.
  • Revision ID: robertc@robertcollins.net-20070807225945-dlxppeb3we4lh897
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
282
282
            t.put_bytes('b', 'txt', mode=0666)
283
283
            self.assertTransportMode(t, 'b', 0666)
284
284
 
285
 
            t._sftp.mkdir('c', mode=0777)
 
285
            t._get_sftp().mkdir('c', mode=0777)
286
286
            self.assertTransportMode(t, 'c', 0777 &~umask)
287
287
 
288
288
            t.mkdir('d', mode=0777)