/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

[patch] Rename TestCase.AssertSubset to assertSubset for consistency (Jan Hudec)

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
            raise AssertionError('pattern "%s" not found in "%s"'
286
286
                    % (needle_re, haystack))
287
287
 
288
 
    def AssertSubset(self, sublist, superlist):
 
288
    def assertSubset(self, sublist, superlist):
289
289
        """Assert that every entry in sublist is present in superlist."""
290
290
        missing = []
291
291
        for entry in sublist: