diff options
Diffstat (limited to 'tests/lib/bootstrap.js')
-rw-r--r-- | tests/lib/bootstrap.js | 12 |
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" ); } } |