Changeset 9055 for main/waeup.kofa/trunk/src
- Timestamp:
- 26 Jul 2012, 06:32:08 (12 years ago)
- 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 465 465 self.browser.open(self.slip_path) 466 466 self.assertTrue( 467 'Please pay before trying to download the application slip.'467 'Please pay and submit before trying to download the application slip.' 468 468 in self.browser.contents) 469 469 # If applicant is in correct state the pdf slip can be opened. 470 IWorkflowState(self.applicant).setState(' paid')470 IWorkflowState(self.applicant).setState('submitted') 471 471 self.browser.open(self.manage_path) 472 472 self.browser.getLink("Download application slip").click() -
main/waeup.kofa/trunk/src/waeup/kofa/schoolgrades.py
r8057 r9055 44 44 45 45 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. 47 47 48 48 Returned is a unicode string of format ``(u'<SUBJ>',u'<GRADE>')``.
Note: See TracChangeset for help on using the changeset viewer.