~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_workingtree.py

  • Committer: Robert Collins
  • Date: 2006-02-12 12:57:15 UTC
  • mto: (1534.1.22 integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: robertc@robertcollins.net-20060212125715-75abf487b5ee1f5a
Add update command for use with checkouts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        """See WorkingTreeFormat.get_format_string()."""
88
88
        return "Sample tree format."
89
89
 
90
 
    def initialize(self, a_bzrdir):
 
90
    def initialize(self, a_bzrdir, revision_id=None):
91
91
        """Sample branches cannot be created."""
92
92
        t = a_bzrdir.get_workingtree_transport(self)
93
93
        t.put('format', StringIO(self.get_format_string()))