Skip to content

Commit

Permalink
Fix naming error in PR 3202. (oppia#3220)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlip authored Mar 19, 2017
1 parent 1849498 commit 9d754f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tests/protractor_utils/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,15 @@ var fillInSuggestion = function(suggestion) {
richTextEditor.setPlainText(suggestion);
};

var addsuggestionDescription = function(description) {
var addSuggestionDescription = function(description) {
element(by.css('.protractor-test-suggestion-description-input')).
sendKeys(description);
};

var submitSuggestion = function(suggestion, description) {
openSuggestionPopup();
fillInSuggestion(suggestion);
addsuggestionDescription(description);
addSuggestionDescription(description);
element(by.css('.protractor-test-suggestion-submit-btn')).click();
general.waitForSystem();
};
Expand Down

0 comments on commit 9d754f8

Please sign in to comment.