aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2016-10-11 09:59:32 -0400
committerScott González <scott.gonzalez@gmail.com>2016-10-11 10:15:04 -0400
commit0627eb3645009d868ae20a27d0a283acd5797a1f (patch)
tree8bbc31f1c052b763effe89a4b04cec1fc3756156 /tests/unit
parent87eab46a589031d781299937f95f22bf61b5ef27 (diff)
downloadjquery-ui-0627eb3645009d868ae20a27d0a283acd5797a1f.tar.gz
jquery-ui-0627eb3645009d868ae20a27d0a283acd5797a1f.zip
Form: Rename from `.form()` to `._form()` since its not for public use
Fixes #15074 Closes gh-1760
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/core/core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js
index 9d00d61b6..770ea4138 100644
--- a/tests/unit/core/core.js
+++ b/tests/unit/core/core.js
@@ -180,7 +180,7 @@ QUnit.test( "Labels", function( assert ) {
QUnit.test( name + this.id.replace( /_/g, " " ), function( assert ) {
var ready = assert.async();
assert.expect( 1 );
- var form = input.form();
+ var form = input._form();
// If input has a form the value should reset to "" if not it should be "changed"
var value = form.length ? "" : "changed";