~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/test_rspush.py

  • Committer: Aaron Bentley
  • Date: 2007-11-02 02:03:09 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20071102020309-p818ojtsho5ubtxk
Fix rspush lock error when excluding working tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        tree.commit('some changes')
41
41
        mock_rsync = MockRSync()
42
42
        rspush(tree, 'example.org:foo', _rsync=mock_rsync)
 
43
        rspush(tree, 'example.org:foo', working_tree = False,
 
44
               _rsync=mock_rsync)
43
45
        tree2 = self.make_branch_and_tree('tree2',
44
46
                                          format='knitpack-experimental')
45
47
        rspush(tree2, 'example.org:foo', _rsync=mock_rsync)