/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bundle.py

Fix tests broken by dirstate caching sha1 and stat values.
Change _iter_changes so that it call update_entry() at the beginning.
this gives us a chance to have files change kind, and still get
the sha1 value from the cache rather than re-reading the file.
Some small updates for executable bits on win32.

Show diffs side-by-side

added added

removed removed

Lines of Context:
488
488
            tree.update()
489
489
            delta = tree.changes_from(self.b1.repository.revision_tree(rev_id))
490
490
            self.assertFalse(delta.has_changed(),
491
 
                             'Working tree has modifications')
 
491
                             'Working tree has modifications: %s' % delta)
492
492
        return tree
493
493
 
494
494
    def valid_apply_bundle(self, base_rev_id, info, checkout_dir=None):