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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-26 08:43:44 UTC
  • mfrom: (5514.2.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101026084344-fip1ktaqjin2w720
(vila) Correctly set the Content-Type header when POSTing http
        requests (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
        reporter.report(file_id, (old_path, path), versioned_change, renamed,
66
66
            modified, exe_change, kind)
67
67
        if expected_lines is not None:
68
 
            for i in range(len(expected_lines)):
69
 
                self.assertEqualDiff(expected_lines[i], result[i])
 
68
            self.assertEqualDiff('\n'.join(expected_lines), '\n'.join(result))
70
69
        else:
71
70
            self.assertEqual([], result)
72
71