From 90223f0a881c5f6d0b29ad229999988cdd4248d1 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Sat, 20 Jun 2020 00:57:27 +0800 Subject: [PATCH] test: fix typo in common/index.js PR-URL: https://github.com/nodejs/node/pull/33976 Reviewed-By: David Carlier Reviewed-By: James M Snell Reviewed-By: Trivikram Kamat --- test/common/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/index.js b/test/common/index.js index 6343425858d8c7..760621a23540b1 100644 --- a/test/common/index.js +++ b/test/common/index.js @@ -27,7 +27,7 @@ const process = global.process; // Some tests tamper with the process global. const assert = require('assert'); const { exec, execSync, spawnSync } = require('child_process'); const fs = require('fs'); -// Do not require 'os' until needed so that test-os-checked-fucnction can +// Do not require 'os' until needed so that test-os-checked-function can // monkey patch it. If 'os' is required here, that test will fail. const path = require('path'); const util = require('util');