summaryrefslogtreecommitdiffstats
path: root/dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
commit40a355a42d4a9444dc753c04c6608dade2f06a23 (patch)
tree871fc667d2de662f171103ce5ec067014ef85e61 /dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html
parentAdding upstream version 124.0.1. (diff)
downloadfirefox-adbda400be353e676059e335c3c0aaf99e719475.tar.xz
firefox-adbda400be353e676059e335c3c0aaf99e719475.zip
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html')
-rw-r--r--dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html b/dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html
index e508817a41..8a5b521742 100644
--- a/dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html
+++ b/dom/system/tests/ioutils/test_ioutils_stat_set_modification_time.html
@@ -76,7 +76,7 @@
await Assert.rejects(
IOUtils.stat(notExistsFile),
- /Could not stat file\(.*\) because it does not exist/,
+ /NotFoundError: Could not stat `.*': file does not exist/,
"IOUtils::stat throws if the target file does not exist"
);
});
@@ -214,7 +214,7 @@
await Assert.rejects(
IOUtils.setModificationTime(notExistsFile),
- /Could not set modification time of file\(.*\) because it does not exist/,
+ /Could not set modification time of `.*': file does not exist/,
"IOUtils::setModificationTime throws if the target file does not exist"
);
@@ -224,7 +224,7 @@
await Assert.rejects(
IOUtils.setModificationTime(tempFileName, 0),
- /Refusing to set the modification time of file\(.*\) to 0/,
+ /DataError: Refusing to set modification time of `.*' to 0: to use the current system time, call `setModificationTime' with no arguments/,
"IOUtils::setModificationTime cannot set the file modification time to Epoch"
);