Bug 627616. (AAv1) Add missing text to is() calls. r=honzab.

This commit is contained in:
Serge Gautherie
2012-03-07 22:11:52 +01:00
parent 3527c67420
commit 75f0c7cf4e

View File

@@ -49,8 +49,8 @@
"realm=mochirealm&" +
extra || "");
xhr.onloadend = function() {
is(xhr.status, expectedStatus);
is(xhr.statusText, expectedText);
is(xhr.status, expectedStatus, "xhr.status");
is(xhr.statusText, expectedText, "xhr.statusText");
runNextTest();
}
return xhr;