diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:14:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:14:29 +0000 |
commit | fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch) | |
tree | 4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /testing/mochitest/tests/Harness_sanity/test_createFiles.html | |
parent | Releasing progress-linux version 124.0.1-1~progress7.99u1. (diff) | |
download | firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/mochitest/tests/Harness_sanity/test_createFiles.html')
-rw-r--r-- | testing/mochitest/tests/Harness_sanity/test_createFiles.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/mochitest/tests/Harness_sanity/test_createFiles.html b/testing/mochitest/tests/Harness_sanity/test_createFiles.html index 0e0637a230..7a06a2ad11 100644 --- a/testing/mochitest/tests/Harness_sanity/test_createFiles.html +++ b/testing/mochitest/tests/Harness_sanity/test_createFiles.html @@ -23,7 +23,7 @@ is(f.type, fileType, "File should have the specified type"); test2(); }, - function (msg) { ok(false, "Should be able to create a file without an error"); test2(); } + function () { ok(false, "Should be able to create a file without an error"); test2(); } ); } @@ -36,7 +36,7 @@ SpecialPowers.createFiles([{name: "/\/\/\/\/\/\/\/\/\/\/\invalidname",}], function () { test3Check(false); }, - function (msg) { test3Check(true); } + function () { test3Check(true); } ); } @@ -75,7 +75,7 @@ ok(f.name, "test4 test file should have a name"); SimpleTest.finish(); }, - function (msg) { + function () { ok(false, "Should be able to create a file without a name without an error"); SimpleTest.finish(); } |