diff options
-rw-r--r-- | test/data/testinit.js | 8 | ||||
-rw-r--r-- | test/data/testrunner.js | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js index 0a7448f26..a866d3227 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -252,11 +252,3 @@ function ajaxTest( title, expect, options ) { window.iframeCallback = undefined; }()); - -// Sandbox start for great justice -(function() { - var oldStart = window.start; - window.start = function() { - oldStart(); - }; -})(); diff --git a/test/data/testrunner.js b/test/data/testrunner.js index 6041e4bd4..b17bf265f 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -159,6 +159,14 @@ var Globals = (function() { }; })(); +// Sandbox start for great justice +(function() { + var oldStart = window.start; + window.start = function() { + oldStart(); + }; +})(); + /** * QUnit hooks */ |