diff options
Diffstat (limited to 'test/parallel/test-fs-append-file.js')
-rw-r--r-- | test/parallel/test-fs-append-file.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-fs-append-file.js b/test/parallel/test-fs-append-file.js index 4d8f66682e..20cba235f0 100644 --- a/test/parallel/test-fs-append-file.js +++ b/test/parallel/test-fs-append-file.js @@ -42,7 +42,7 @@ tmpdir.refresh(); const throwNextTick = (e) => { process.nextTick(() => { throw e; }); }; -// test that empty file will be created and have content added (callback API) +// Test that empty file will be created and have content added (callback API) { const filename = join(tmpdir.path, 'append.txt'); @@ -56,7 +56,7 @@ const throwNextTick = (e) => { process.nextTick(() => { throw e; }); }; })); } -// test that empty file will be created and have content added (promise API) +// Test that empty file will be created and have content added (promise API) { const filename = join(tmpdir.path, 'append-promise.txt'); |