~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_foreign.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-17 00:32:27 UTC
  • mfrom: (4606.2.1 test-foreign)
  • Revision ID: pqm@pqm.ubuntu.com-20090817003227-g813yyjlq47j9qyb
(robertc) Prepare test_foreign for rich roots as the default format.
        (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
        foreign.update_workingtree_fileids(wt, target_basis)
321
321
        wt.lock_read()
322
322
        try:
323
 
            self.assertEquals(set([root_id, "bla-b"]), set(wt.inventory))
 
323
            self.assertEquals([root_id, "bla-b"], list(wt.inventory))
324
324
        finally:
325
325
            wt.unlock()
326
326