/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/per_tree/test_is_executable.py

  • Committer: Jelmer Vernooij
  • Date: 2017-08-02 22:46:47 UTC
  • mfrom: (6745.1.1 trunk)
  • Revision ID: jelmer@jelmer.uk-20170802224647-qwo8u8gti5xtt6ya
Merge lp:~jelmer/brz/test-file-ids.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
            False)
30
30
        tree.lock_read()
31
31
        self.addCleanup(tree.unlock)
32
 
        self.assertEqual(False, tree.is_executable('1top-dir'))
 
32
        self.assertEqual(False, tree.is_executable(tree.path2id('1top-dir')))
33
33
 
34
34
    def test_is_executable_symlink(self):
35
35
        self.requireFeature(SymlinkFeature)