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

  • Committer: John Arbash Meinel
  • Date: 2006-08-28 19:11:56 UTC
  • mto: This revision was merged to the branch mainline in revision 1968.
  • Revision ID: john@arbash-meinel.com-20060828191156-0b1120960a2fac0f
We don't really need to setgid for files, just directories. And the test fails on Mac anyway

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
        st = os.lstat('test')
94
94
        self.assertEqualMode(mode, stat.S_IMODE(st.st_mode))
95
95
 
96
 
    def test_mode_02666(self):
97
 
        self._test_mode(02666)
98
 
 
99
96
    def test_mode_0666(self):
100
97
        self._test_mode(0666)
101
98