Ignore:
Timestamp:
18 Dec 2011, 10:50:21 (13 years ago)
Author:
Henrik Bettermann
Message:

Fix tests.

Location:
main/waeup.sirp/trunk/src/waeup/sirp
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser.txt

    r7321 r7372  
    284284      <td>APP-1-...</td>
    285285      <td>initialized</td>
    286       <td>... - AC initialized by zope.mgr</td>
     286      <td>... - AC initialized by Manager</td>
    287287    ...
    288288
     
    303303      <td>APP-1-...</td>
    304304      <td>initialized</td>
    305       <td>... - AC initialized by zope.mgr</td>
     305      <td>... - AC initialized by Manager</td>
    306306    ...
    307307
     
    322322      <td>APP-1-<10-DIGITS></td>
    323323      <td>initialized</td>
    324       <td>... - AC initialized by zope.mgr</td>
     324      <td>... - AC initialized by Manager</td>
    325325    ...
    326326
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests/test_browser.py

    r7356 r7372  
    320320        self.browser.getControl("Save").click()
    321321        self.assertMatches('...Form has been saved...', self.browser.contents)
    322         self.assertMatches('...Application started by zope.mgr...', self.browser.contents)
     322        self.assertMatches('...Application started by Manager...', self.browser.contents)
    323323        self.browser.open(self.view_path)
    324324        self.assertEqual(self.browser.headers['Status'], '200 Ok')
  • main/waeup.sirp/trunk/src/waeup/sirp/students/tests/test_browser.py

    r7364 r7372  
    404404        self.assertEqual(self.browser.headers['Status'], '200 Ok')
    405405        self.assertEqual(self.browser.url, self.history_student_path)
    406         self.assertMatches('...Student admitted by zope.mgr...',
     406        self.assertMatches('...Student admitted by Manager...',
    407407                           self.browser.contents)
    408408        # Only the Application Slip does not exist
  • main/waeup.sirp/trunk/src/waeup/sirp/tests/test_objecthistory.py

    r7321 r7372  
    8989        hist.addMessage('blah')
    9090        result = ''.join(hist.messages)
    91         self.assertMatches('<YYYY-MM-DD hh:mm:ss> - blah by bob', result)
     91        self.assertMatches('<YYYY-MM-DD hh:mm:ss> - blah by Bob', result)
    9292
    9393    def test_messages(self):
Note: See TracChangeset for help on using the changeset viewer.