~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-02-05 07:38:05 UTC
  • mfrom: (2245.6.3 win32.unc.path)
  • Revision ID: pqm@pqm.ubuntu.com-20070205073805-fe53a1d3e1184c95
(bialix) Fix recursive upwalk for win32 UNC path (r=robert)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1030
1030
        # directory of this transport
1031
1031
        root_transport = orig_transport
1032
1032
        new_transport = root_transport.clone("..")
1033
 
        # as we are walking up directories, the path must be must be 
 
1033
        # as we are walking up directories, the path must be
1034
1034
        # growing less, except at the top
1035
1035
        self.assertTrue(len(new_transport.base) < len(root_transport.base)
1036
1036
            or new_transport.base == root_transport.base)
1037
1037
        while new_transport.base != root_transport.base:
1038
1038
            root_transport = new_transport
1039
1039
            new_transport = root_transport.clone("..")
1040
 
            # as we are walking up directories, the path must be must be 
 
1040
            # as we are walking up directories, the path must be
1041
1041
            # growing less, except at the top
1042
1042
            self.assertTrue(len(new_transport.base) < len(root_transport.base)
1043
1043
                or new_transport.base == root_transport.base)