~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 22:43:26 UTC
  • mfrom: (4617.1.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090817224326-uhljmr5me5x3xyda
(robertc) Multiple 2a-as-default fixes. (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