diff options
Diffstat (limited to 'test/parallel/test-repl-save-load.js')
-rw-r--r-- | test/parallel/test-repl-save-load.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-repl-save-load.js b/test/parallel/test-repl-save-load.js index 7ca0e9c016..2767c0f026 100644 --- a/test/parallel/test-repl-save-load.js +++ b/test/parallel/test-repl-save-load.js @@ -97,7 +97,7 @@ let loadFile = join(tmpdir.path, 'file.does.not.exist'); // should not break putIn.write = function(data) { - // make sure I get a failed to load message and not some crazy error + // Make sure I get a failed to load message and not some crazy error assert.strictEqual(data, `Failed to load:${loadFile}\n`); // eat me to avoid work putIn.write = () => {}; @@ -121,7 +121,7 @@ const invalidFileName = join(tmpdir.path, '\0\0\0\0\0'); // should not break putIn.write = function(data) { - // make sure I get a failed to save message and not some other error + // Make sure I get a failed to save message and not some other error assert.strictEqual(data, `Failed to save:${invalidFileName}\n`); // reset to no-op putIn.write = () => {}; |