diff options
author | Ivan Kuchin <tadump+git@gmail.com> | 2018-12-10 23:44:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-10 23:44:31 +0100 |
commit | 1be4edc76f5d773047141be702db35824d2c1602 (patch) | |
tree | d28137e30cec09669f5ace6238ce0ab728e7959f | |
parent | b3108275064353390848056bf097809743dcdf21 (diff) | |
download | rails-1be4edc76f5d773047141be702db35824d2c1602.tar.gz rails-1be4edc76f5d773047141be702db35824d2c1602.tar.bz2 rails-1be4edc76f5d773047141be702db35824d2c1602.zip |
Fix typos in click test descriptions [ci skip]
-rw-r--r-- | actionview/test/ujs/public/test/data-disable-with.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/test/ujs/public/test/data-disable-with.js b/actionview/test/ujs/public/test/data-disable-with.js index b5684e0938..0654484711 100644 --- a/actionview/test/ujs/public/test/data-disable-with.js +++ b/actionview/test/ujs/public/test/data-disable-with.js @@ -309,7 +309,7 @@ asyncTest('form[data-remote] input|button|textarea[data-disable-with] does not d start() }) -asyncTest('ctrl-clicking on a link does not disables the link', 6, function() { +asyncTest('ctrl-clicking on a link does not disable the link', 6, function() { var link = $('a[data-disable-with]') App.checkEnabledState(link, 'Click me') @@ -322,7 +322,7 @@ asyncTest('ctrl-clicking on a link does not disables the link', 6, function() { start() }) -asyncTest('right/mouse-wheel-clicking on a link does not disables the link', 10, function() { +asyncTest('right/mouse-wheel-clicking on a link does not disable the link', 10, function() { var link = $('a[data-disable-with]') App.checkEnabledState(link, 'Click me') |