summaryrefslogtreecommitdiffstats
path: root/image/test/browser/head.js
diff options
context:
space:
mode:
Diffstat (limited to 'image/test/browser/head.js')
-rw-r--r--image/test/browser/head.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/test/browser/head.js b/image/test/browser/head.js
index 29fc67a1a7..00f35babb2 100644
--- a/image/test/browser/head.js
+++ b/image/test/browser/head.js
@@ -27,7 +27,7 @@ function actOnMozImage(doc, id, func) {
function assertPrefVal(name, val) {
let boolValue = Services.prefs.getBoolPref(name);
- ok(boolValue === val, `pref ${name} is set to ${val}`);
+ Assert.strictEqual(boolValue, val, `pref ${name} is set to ${val}`);
if (boolValue !== val) {
throw Error(`pref ${name} is not set to ${val}`);
}
@@ -121,7 +121,7 @@ async function createMozIconInFile(ext, expectSuccess = true) {
await waitLoad;
const icon = content.document.getElementById(`moz-icon-${_ext}-${_kSize}`);
- ok(icon !== null, `got a valid ${_ext} moz-icon`);
+ Assert.notStrictEqual(icon, null, `got a valid ${_ext} moz-icon`);
is(icon.width, _kSize, `${_kSize} px width ${_ext} moz-icon`);
is(icon.height, _kSize, `${_kSize} px height ${_ext} moz-icon`);
};