test: fix typo in test/parallel/test-fs-rm.js

`succesfully` -> `successfully`

PR-URL: https://github.com/nodejs/node/pull/44882
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Tim Shilov
2022-10-26 12:00:55 +01:00
committed by GitHub
parent 5374e15d24
commit 84044df70b

View File

@@ -413,7 +413,7 @@ if (isGitPresent) {
});
} catch (err) {
// Only fail the test if the folder was not deleted.
// as in some cases rmSync succesfully deletes read-only folders.
// as in some cases rmSync successfully deletes read-only folders.
if (fs.existsSync(root)) {
throw err;
}