aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/bootstrap.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js
index b9598c6df..6d608f2eb 100644
--- a/tests/lib/bootstrap.js
+++ b/tests/lib/bootstrap.js
@@ -123,14 +123,14 @@ function swarmInject() {
if ( widget ) {
modules = modules.concat([
- widget + ( deprecated ? "_common_deprecated" : "_common" ),
- widget + "_core",
- widget + "_events",
- widget + "_methods",
- widget + "_options"
+ ( deprecated ? "common-deprecated" : "common" ),
+ "core",
+ "events",
+ "methods",
+ "options"
]);
if ( deprecated ) {
- modules = modules.concat( widget + "_deprecated" );
+ modules = modules.concat( "deprecated" );
}
}