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

  • Committer: Jelmer Vernooij
  • Date: 2020-07-18 23:14:00 UTC
  • mfrom: (7490.40.62 work)
  • mto: This revision was merged to the branch mainline in revision 7519.
  • Revision ID: jelmer@jelmer.uk-20200718231400-jaes9qltn8oi8xss
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    )
28
28
from breezy.mutabletree import MutableTree
29
29
from breezy.tests import TestSkipped
30
 
from breezy.transform import _PreviewTree
 
30
from breezy.transform import PreviewTree
31
31
from breezy.tests import (
32
32
    features,
33
33
    )
55
55
        self.addCleanup(self.tree.unlock)
56
56
 
57
57
    def test_symlink_target(self):
58
 
        if isinstance(self.tree, (MutableTree, _PreviewTree)):
 
58
        if isinstance(self.tree, (MutableTree, PreviewTree)):
59
59
            raise TestSkipped(
60
60
                'symlinks not accurately represented in working trees and'
61
61
                ' preview trees')