[#961] Fixed injection script to match qUnit changes

This commit is contained in:
David Seifried 2012-03-08 14:44:48 -05:00
Родитель 02cb124cb5
Коммит 1e2f148fa8
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -51,11 +51,11 @@
// QUnit (jQuery)
// http://docs.jquery.com/QUnit
if ( typeof QUnit !== "undefined" ) {
QUnit.done = function(failed, passed){
QUnit.done = function( results ){
submit({
fail: failed,
fail: results.failed,
error: 0,
total: passed + failed
total: results.total
});
};