~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testfetch.py

  • Committer: Robert Collins
  • Date: 2005-10-09 23:52:04 UTC
  • Revision ID: robertc@robertcollins.net-20051009235204-0abf18346c658e34
touchup the prefixed-store patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        source = Branch.open(self.get_remote_url("source/"))
136
136
        source.weave_store.enable_cache = False
137
137
        self.assertEqual(greedy_fetch(target, source), (2, []))
138
 
        weave_suffix = 'weaves/id.weave HTTP/1.1" 200 -'
 
138
        # this is the path to the literal file. As format changes 
 
139
        # occur it needs to be updated. FIXME: ask the store for the
 
140
        # path.
 
141
        weave_suffix = 'weaves/ce/id.weave HTTP/1.1" 200 -'
139
142
        self.assertEqual(1,
140
143
            len([log for log in self.weblogs if log.endswith(weave_suffix)]))