Skip to content
This repository has been archived by the owner on Feb 18, 2018. It is now read-only.

Commit

Permalink
Fixes typo in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jerefrer committed Aug 5, 2013
1 parent c7a79fe commit ba85811
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/jquery.autoSuggest_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

test('Type "Yao Ming" and select it by COMMA', 3, function () {
el = create();
// Type "Yap Ming" and ","
// Type "Yao Ming" and ","
el.focus();
el.val("Yao Ming");
el.simulate("keydown", {"keyCode" : keyCode.COMMA});
Expand All @@ -129,7 +129,7 @@

test('Type "Yao Ming" and select it by TAB', 3, function () {
el = create();
// Type "Yap Ming" and "\t"
// Type "Yao Ming" and "\t"
el.focus();
el.val("Yao Ming");
el.simulate("keydown", {"keyCode" : keyCode.TAB});
Expand All @@ -143,7 +143,7 @@

asyncTest('Select two values and remove both of them.', 5, function () {
el = create();
// Type "Yap Ming" and ","
// Type "Yao Ming" and ","
el.focus();
el.val("Yao Ming");
el.simulate("keydown", {"keyCode" : keyCode.COMMA});
Expand Down Expand Up @@ -361,7 +361,7 @@

test('Type "Yao Ming" but press than ESC. No value should be selected.', 1, function () {
el = create();
// Type "Yap Ming" and ","
// Type "Yao Ming" and ","
el.focus();
el.val("Yao Ming");
el.simulate("keydown", {"keyCode" : keyCode.ESC});
Expand Down Expand Up @@ -489,7 +489,7 @@
el = create(null, $.extend({}, options, {
neverSubmit : true
}));
// Type "Yap Ming" and "\t"
// Type "Yao Ming" and "\t"
el.focus();
el.val("Yao Ming");
el.simulate("keydown", {"keyCode" : keyCode.ENTER});
Expand Down

0 comments on commit ba85811

Please sign in to comment.