Changeset 16183
- Timestamp:
- 24 Jul 2020, 07:52:23 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/tests/test_browser.py
r16164 r16183 302 302 applicantscontainer.year = session_1 303 303 applicantscontainer.application_fee = 1.0 # Must be set but is not used. 304 applicantscontainer.code = u't rans1234'304 applicantscontainer.code = u'tsc1234' 305 305 applicantscontainer.prefix = 'tscf' 306 applicantscontainer.title = u'This is a t ranscontainer'306 applicantscontainer.title = u'This is a tsc container' 307 307 applicantscontainer.application_category = 'no' 308 308 applicantscontainer.mode = 'create' … … 312 312 applicantscontainer.startdate = datetime.datetime.now(pytz.utc) - delta 313 313 applicantscontainer.enddate = datetime.datetime.now(pytz.utc) + delta 314 self.app['applicants']['t rans1234'] = applicantscontainer314 self.app['applicants']['tsc1234'] = applicantscontainer 315 315 # Add an applicant 316 316 applicant = createObject('waeup.Applicant') … … 318 318 # because managers are allowed to edit this required field 319 319 applicant.reg_number = u'12345' 320 self.app['applicants']['t rans1234'].addApplicant(applicant)320 self.app['applicants']['tsc1234'].addApplicant(applicant) 321 321 IUserAccount( 322 self.app['applicants']['t rans1234'][322 self.app['applicants']['tsc1234'][ 323 323 applicant.application_number]).setPassword('apwd') 324 324 # Login
Note: See TracChangeset for help on using the changeset viewer.