From ca276253fbc1f3b54b8fe3043a994722b065350c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 20 Jun 2019 13:26:31 -0600 Subject: [PATCH] doc: remove "note that" from writing-tests.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/remark-preset-lint-node/pull/16 PR-URL: https://github.com/nodejs/node/pull/28329 Reviewed-By: Gus Caplan Reviewed-By: Trivikram Kamat Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater --- doc/guides/writing-tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/writing-tests.md b/doc/guides/writing-tests.md index b4d05e2811b..b6f7f47129f 100644 --- a/doc/guides/writing-tests.md +++ b/doc/guides/writing-tests.md @@ -390,7 +390,7 @@ Next add the test to the `sources` in the `cctest` target in node.gyp: ], ``` -Note that the only sources that should be included in the cctest target are +The only sources that should be included in the cctest target are actual test or helper source files. There might be a need to include specific object files that are compiled by the `node` target and this can be done by adding them to the `libraries` section in the cctest target.