Skip to content

Commit

Permalink
test: fix typo in test/parallel/test-fs-rm.js
Browse files Browse the repository at this point in the history
`succesfully` -> `successfully`

PR-URL: #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>
  • Loading branch information
TimShilov authored and RafaelGSS committed Nov 10, 2022
1 parent 316354e commit 3c7ea23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-fs-rm.js
Expand Up @@ -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;
}
Expand Down

0 comments on commit 3c7ea23

Please sign in to comment.