| Index: remoting/webapp/js_proto/qunit_proto.js
|
| diff --git a/remoting/webapp/js_proto/qunit_proto.js b/remoting/webapp/js_proto/qunit_proto.js
|
| index 274282bff90628427be10176aac9ccd23ca1af0c..ff289caae949b25a7869f14e8bc3438d93d73ebd 100644
|
| --- a/remoting/webapp/js_proto/qunit_proto.js
|
| +++ b/remoting/webapp/js_proto/qunit_proto.js
|
| @@ -84,8 +84,8 @@ QUnit.Assert.prototype.throws = function(a, opt_b, opt_message) {};
|
|
|
| /**
|
| * @typedef {{
|
| - * beforeEach: (function(QUnit.Assert=) | undefined),
|
| - * afterEach: (function(QUnit.Assert=) | undefined)
|
| + * beforeEach: (function(!QUnit.Assert) | undefined),
|
| + * afterEach: (function(!QUnit.Assert) | undefined)
|
| * }}
|
| */
|
| QUnit.ModuleArgs;
|
| @@ -98,6 +98,6 @@ QUnit.module = function(desc, opt_args) {};
|
|
|
| /**
|
| * @param {string} desc
|
| - * @param {function(QUnit.Assert)} f
|
| + * @param {function(!QUnit.Assert)} f
|
| */
|
| QUnit.test = function(desc, f) {};
|
|
|