/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/__init__.py

Implemented final_file_id

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
            raise AssertionError("value(s) %r not present in container %r" % 
284
284
                                 (missing, superlist))
285
285
 
 
286
    def assertIs(self, a, b):
 
287
        if a is not b:
 
288
            raise AssertionError("%r is not %r" % (a, b))
 
289
 
286
290
    def _startLogFile(self):
287
291
        """Send bzr and test log messages to a temporary file.
288
292