From 43bee8607403b4a6bf11353e2174f19c8060c8b1 Mon Sep 17 00:00:00 2001 From: JonahStanley Date: Fri, 16 Aug 2013 11:08:05 -0400 Subject: [PATCH] Tightened up wording --- lms/djangoapps/courseware/features/help.feature | 4 ++-- lms/djangoapps/courseware/features/help.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lms/djangoapps/courseware/features/help.feature b/lms/djangoapps/courseware/features/help.feature index beb69de7c0..ff381c666b 100644 --- a/lms/djangoapps/courseware/features/help.feature +++ b/lms/djangoapps/courseware/features/help.feature @@ -8,11 +8,11 @@ Feature: The help module should work Given I visit the homepage When I open the help form And I report a "problem" - Then I should see confirmation that the problem was received + Then I should see confirmation that the issue was received Scenario: I can submit a problem when I am logged in Given I am in a course When I open the help form And I report a "problem" without saying who I am - Then I should see confirmation that the problem was received + Then I should see confirmation that the issue was received diff --git a/lms/djangoapps/courseware/features/help.py b/lms/djangoapps/courseware/features/help.py index 87397f5bc8..a426caa910 100644 --- a/lms/djangoapps/courseware/features/help.py +++ b/lms/djangoapps/courseware/features/help.py @@ -31,7 +31,7 @@ def submit_partial_problem_type(step, submission_type): world.css_click(submit_css) -@step(u'I should see confirmation that the problem was received') +@step(u'I should see confirmation that the issue was received') def see_confirmation(step): assert world.browser.evaluate_script("$('input[value=\"Submit\"]').attr('disabled')") == 'disabled'