~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-25 08:29:08 UTC
  • mfrom: (2940.1.2 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071025082908-abn3kunrb2ivdvth
renaming of experimental pack formats to include knitpack in their name (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
                # these are typically hidden or aliases for other formats
139
139
                continue
140
140
            expected = None
141
 
            if key in ('dirstate', 'dirstate-tags', 'dirstate-with-subtree'):
142
 
                expected = 'dirstate or dirstate-tags'
 
141
            if key in ('dirstate', 'dirstate-tags', 'dirstate-with-subtree',
 
142
                'knitpack-experimental', 'knitpack-subtree-experimental'):
 
143
                expected = 'dirstate or dirstate-tags or knitpack-experimental'
143
144
            if key in ('knit', 'metaweave'):
144
145
                expected = 'knit or metaweave'
145
146
            self.assertCheckoutDescription(key, expected)