Changeset 7941
- Timestamp:
- 07/17/08 08:29:35 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/admin_scripts/tests.py
r7921 r7941 109 109 def assertOutput(self, stream, msg): 110 110 "Utility assertion: assert that the given message exists in the output" 111 self. assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))111 self.failUnless(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream)) 112 112 113 113 ##########################################################################
