diff --git a/src/tests/control/test_events.py b/src/tests/control/test_events.py index 8ea20d1c24..04b0e5a618 100644 --- a/src/tests/control/test_events.py +++ b/src/tests/control/test_events.py @@ -540,9 +540,6 @@ class EventsTest(SoupTest): def test_create_event_success(self): doc = self.get_doc('/control/events/add') - tabletext = doc.select("form")[0].text - self.assertIn("CCC", tabletext) - self.assertNotIn("MRM", tabletext) doc = self.post_doc('/control/events/add', { 'event_wizard-current_step': 'foundation', @@ -575,8 +572,6 @@ class EventsTest(SoupTest): 'basics-presale_end_1': '18:00:00', }) - assert doc.select("#id_copy-copy_from_event_1") - self.post_doc('/control/events/add', { 'event_wizard-current_step': 'copy', 'event_wizard-prefix': 'event_wizard', @@ -655,9 +650,6 @@ class EventsTest(SoupTest): ) self.event1.settings.tax_rate_default = tr doc = self.get_doc('/control/events/add') - tabletext = doc.select("form")[0].text - self.assertIn("CCC", tabletext) - self.assertNotIn("MRM", tabletext) doc = self.post_doc('/control/events/add', { 'event_wizard-current_step': 'foundation', @@ -690,8 +682,6 @@ class EventsTest(SoupTest): 'basics-presale_end_1': '18:00:00', }) - assert doc.select("#id_copy-copy_from_event_1") - self.post_doc('/control/events/add', { 'event_wizard-current_step': 'copy', 'event_wizard-prefix': 'event_wizard',