Ignore:
Timestamp:
26 Jul 2012, 06:32:08 (12 years ago)
Author:
Henrik Bettermann
Message:

Fix test.

Location:
main/waeup.kofa/trunk/src/waeup/kofa
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py

    r8984 r9055  
    465465        self.browser.open(self.slip_path)
    466466        self.assertTrue(
    467             'Please pay before trying to download the application slip.'
     467            'Please pay and submit before trying to download the application slip.'
    468468            in self.browser.contents)
    469469        # If applicant is in correct state the pdf slip can be opened.
    470         IWorkflowState(self.applicant).setState('paid')
     470        IWorkflowState(self.applicant).setState('submitted')
    471471        self.browser.open(self.manage_path)
    472472        self.browser.getLink("Download application slip").click()
  • main/waeup.kofa/trunk/src/waeup/kofa/schoolgrades.py

    r8057 r9055  
    4444
    4545    def to_string(self):
    46         """A string representation that can be used in imports/export.
     46        """A string representation that can be used in exports.
    4747
    4848        Returned is a unicode string of format ``(u'<SUBJ>',u'<GRADE>')``.
Note: See TracChangeset for help on using the changeset viewer.