/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 bzrlib/tests/repository_implementations/test_fetch.py

  • Committer: Aaron Bentley
  • Date: 2008-04-12 06:46:35 UTC
  • mfrom: (3363 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3364.
  • Revision ID: aaron@aaronbentley.com-20080412064635-fs97gk4682bhefnf
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
    def test_fetch_knit3(self):
50
50
        # create a repository of the sort we are testing.
51
 
        tree_a = self.make_branch_and_tree('a', '')
 
51
        tree_a = self.make_branch_and_tree('a')
52
52
        self.build_tree(['a/foo'])
53
53
        tree_a.add('foo', 'file1')
54
54
        tree_a.commit('rev1', rev_id='rev1')
127
127
            target_repo.get_signature_text('rev1'))
128
128
 
129
129
    def make_repository_with_one_revision(self):
130
 
        wt = self.make_branch_and_tree('source', '')
 
130
        wt = self.make_branch_and_tree('source')
131
131
        wt.commit('rev1', allow_pointless=True, rev_id='rev1')
132
132
        return wt.branch.repository
133
133