Skip to content
Prev Previous commit
test: punctuate tests in #19212
Refs: #19212
  • Loading branch information
ryzokuken committed Mar 8, 2018
commit c8654f5780523e7e34f8d888b90a557c0a2e4bdc
2 changes: 1 addition & 1 deletion test/parallel/test-fs-existssync-false.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const common = require('../common');
const tmpdir = require('../common/tmpdir');

// This test ensures that fs.existsSync doesn't incorrectly return false
// This test ensures that fs.existsSync doesn't incorrectly return false.
// (especially on Windows)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: It would be nice to punctuate the new comments.

// https://github.com/nodejs/node-v0.x-archive/issues/3739

Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-fs-readfilesync-enoent.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (!common.isWindows)
common.skip('Windows specific test.');

// This test ensures fs.realpathSync works on properly on Windows without
// throwing ENOENT when the path involves a fileserver
// throwing ENOENT when the path involves a fileserver.
// https://github.com/nodejs/node-v0.x-archive/issues/3542

const assert = require('assert');
Expand Down
4 changes: 2 additions & 2 deletions test/parallel/test-http-request-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ if (!common.hasCrypto)

const fixtures = require('../common/fixtures');

// This test ensures that a http request callback is called
// when the agent option is set
// This test ensures that a http request callback is called when the agent
// option is set.
// See https://github.com/nodejs/node-v0.x-archive/issues/1531

const https = require('https');
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-process-domain-segfault.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
require('../common');

// This test ensures that setting `process.domain` to `null` does not result in
// node crashing with a segfault
// node crashing with a segfault.
// https://github.com/nodejs/node-v0.x-archive/issues/4256

process.domain = null;
Expand Down