Ignore:
Timestamp:
2 Oct 2015, 15:35:29 (9 years ago)
Author:
Henrik Bettermann
Message:

Disable duplication checking, see Uniben #1011.

File:
1 edited

Legend:

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

    r13254 r13280  
    11191119        return
    11201120
    1121     def test_duplicate_choice(self):
    1122         # Make sure that that 1st and 2nd choice are different
    1123         self.login()
    1124         self.browser.open(self.edit_path)
    1125         self.fill_correct_values() # fill other fields with correct values
    1126         self.browser.getControl(name="form.course2").value = ['CERT1']
    1127         self.browser.getControl("Save").click()
    1128         self.assertTrue(
    1129             '1st and 2nd choice must be different' in self.browser.contents)
    1130         self.browser.getControl(name="form.course2").value = []
    1131         self.browser.getControl("Save").click()
    1132         self.assertTrue('Form has been saved' in self.browser.contents)
    1133         return
    1134 
    11351121    def test_final_submit(self):
    11361122        # Make sure that a correctly filled form with passport picture
Note: See TracChangeset for help on using the changeset viewer.