Commit 2bf64d76 by Andy Armstrong

Remove feature flag for testing on container pages

parent b78508a1
...@@ -55,11 +55,6 @@ def click_new_component_button(step, component_button_css): ...@@ -55,11 +55,6 @@ def click_new_component_button(step, component_button_css):
world.css_click(component_button_css) world.css_click(component_button_css)
if FEATURES['USE_CONTAINER_PAGE_FOR_TESTING']:
unit_url = world.browser.url
container_url = unit_url.replace('/unit/', '/container/')
world.visit(container_url)
def _click_advanced(): def _click_advanced():
css = 'ul.problem-type-tabs a[href="#tab2"]' css = 'ul.problem-type-tabs a[href="#tab2"]'
......
...@@ -99,9 +99,6 @@ FEATURES = { ...@@ -99,9 +99,6 @@ FEATURES = {
# Turn off Advanced Security by default # Turn off Advanced Security by default
'ADVANCED_SECURITY': False, 'ADVANCED_SECURITY': False,
# Switch acceptance tests to use the container page instead of the unit page
'USE_CONTAINER_PAGE_FOR_TESTING': False,
} }
ENABLE_JASMINE = False ENABLE_JASMINE = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment