~jelmer/brz/graph-rs

« back to all changes in this revision

Viewing changes to breezy/tests/per_workingtree/test_canonical_path.py

  • Committer: The Breezy Bot
  • Author(s): Jelmer Vernooij, Jelmer Vernooij
  • Date: 2023-02-06 23:24:27 UTC
  • mfrom: (7650.92.13 3.3)
  • Revision ID: the_breezy_bot-20230206232427-chyuc5nnov1bje2y
Merge lp:brz/3.3

by brz review by jelmer

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tests for interface conformance of canonical paths of trees."""
18
18
 
19
19
 
20
 
from breezy import (
21
 
    tests,
22
 
    )
23
 
from breezy.tests.per_workingtree import (
24
 
    TestCaseWithWorkingTree,
25
 
    )
26
 
from breezy.tests import (
27
 
    features,
28
 
    )
 
20
from breezy import tests
 
21
from breezy.tests import features
 
22
from breezy.tests.per_workingtree import TestCaseWithWorkingTree
29
23
 
30
24
 
31
25
class TestCanonicalPaths(TestCaseWithWorkingTree):