~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testsweet.py

  • Committer: Martin Pool
  • Date: 2005-07-13 00:30:30 UTC
  • Revision ID: mbp@sourcefrog.net-20050713003030-2e89871a9ce24c7b
- typo in testsweet

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
        self.log("check contents of file %s" % filename)
200
200
        contents = file(filename, 'r').read()
201
201
        if contents != expect:
202
 
            self.log("expected: %r" % expected)
 
202
            self.log("expected: %r" % expect)
203
203
            self.log("actually: %r" % contents)
204
204
            self.fail("contents of %s not as expected")
205
205