~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

(John Arbash Meinel) Update dirstate._iter_changes to return unicode for all paths (bug #92608)

Show diffs side-by-side

added added

removed removed

Lines of Context:
711
711
        return ''.join(difflines)
712
712
 
713
713
    def assertEqual(self, a, b, message=''):
714
 
        if a == b:
715
 
            return
 
714
        try:
 
715
            if a == b:
 
716
                return
 
717
        except UnicodeError, e:
 
718
            # If we can't compare without getting a UnicodeError, then
 
719
            # obviously they are different
 
720
            mutter('UnicodeError: %s', e)
716
721
        if message:
717
722
            message += '\n'
718
723
        raise AssertionError("%snot equal:\na = %s\nb = %s\n"