diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 0134d1d03a9..9a7a92a88ee 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -177,7 +177,7 @@ function migrateUrl() { // Load the jQuery fixes, if necessary if ( !jQueryVersion || ( jQueryVersion.indexOf( "git" ) === -1 && parseFloat( jQueryVersion ) < 4 ) ) { - modules.unshift( "ui/jquery-1-7" ); + modules.unshift( "ui/jquery-patch" ); } requireTests( modules, noBackCompat ); diff --git a/ui/core.js b/ui/core.js index 2cccd0bd8e9..d42aedea97c 100644 --- a/ui/core.js +++ b/ui/core.js @@ -9,7 +9,7 @@ define( [ "./ie", "./keycode", "./labels", - "./jquery-1-7", + "./jquery-patch.js", "./plugin", "./safe-active-element", "./safe-blur", diff --git a/ui/jquery-1-7.js b/ui/jquery-patch.js similarity index 100% rename from ui/jquery-1-7.js rename to ui/jquery-patch.js