From a49acc73ee4fafb139bf7b84cb3a73a80b5835ab Mon Sep 17 00:00:00 2001 From: JonahStanley Date: Fri, 31 May 2013 09:16:14 -0400 Subject: [PATCH] Removed the save_html line --- lms/djangoapps/courseware/features/courseware_common.py | 1 - lms/djangoapps/courseware/features/high-level-tabs.py | 1 - 2 files changed, 2 deletions(-) diff --git a/lms/djangoapps/courseware/features/courseware_common.py b/lms/djangoapps/courseware/features/courseware_common.py index 4e9aa3fb7b..ec63da2d82 100644 --- a/lms/djangoapps/courseware/features/courseware_common.py +++ b/lms/djangoapps/courseware/features/courseware_common.py @@ -12,7 +12,6 @@ def i_click_on_view_courseware(step): @step('I click on the "([^"]*)" tab$') def i_click_on_the_tab(step, tab_text): world.click_link(tab_text) - world.save_the_html() @step('I visit the courseware URL$') diff --git a/lms/djangoapps/courseware/features/high-level-tabs.py b/lms/djangoapps/courseware/features/high-level-tabs.py index 307a656b35..056c627803 100644 --- a/lms/djangoapps/courseware/features/high-level-tabs.py +++ b/lms/djangoapps/courseware/features/high-level-tabs.py @@ -8,5 +8,4 @@ def i_click_on_the_tab_and_check(step): tab_text = tab_title['TabName'] title = tab_title['PageTitle'] world.click_link(tab_text) - world.save_the_html() assert(title in world.browser.title)