From d410d6d8ffa412692b737c5c3dd595f581059922 Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Thu, 12 Jul 2018 13:08:29 -0400 Subject: [PATCH] Remove flaky test_edit_raw_html. EDUCATOR-3186 --- .../tests/studio/test_studio_container.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/common/test/acceptance/tests/studio/test_studio_container.py b/common/test/acceptance/tests/studio/test_studio_container.py index 6d523abdd3..32d5554b7a 100644 --- a/common/test/acceptance/tests/studio/test_studio_container.py +++ b/common/test/acceptance/tests/studio/test_studio_container.py @@ -213,24 +213,6 @@ class EditContainerTest(NestedVerticalTest): container = self.go_to_nested_container_page() self.modify_display_name_and_verify(container) - def test_edit_raw_html(self): - """ - Test the raw html editing functionality. - """ - modified_content = "

modified content

" - - #navigate to and open the component for editing - unit = self.go_to_unit_page() - container = unit.xblocks[1].go_to_container() - component = container.xblocks[1].children[0] - component.edit() - - html_editor = HtmlXBlockEditorView(self.browser, component.locator) - html_editor.set_content_and_save(modified_content, raw=True) - - #note we're expecting the

tags to have been removed - self.assertEqual(component.student_content, "modified content") - class BaseGroupConfigurationsTest(ContainerBase): ALL_LEARNERS_AND_STAFF = XBlockVisibilityEditorView.ALL_LEARNERS_AND_STAFF