From 84ae59e5f8f82233887678841bfafd4008f9d7a0 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Sun, 11 Mar 2018 21:37:56 +0200 Subject: [PATCH] test: fix path in doctool/test-doctool-json PR-URL: https://github.com/nodejs/node/pull/19287 Refs: https://github.com/nodejs/node/pull/17820 Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott --- test/doctool/test-doctool-json.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/doctool/test-doctool-json.js b/test/doctool/test-doctool-json.js index 993050924a326c..e295014071a3c5 100644 --- a/test/doctool/test-doctool-json.js +++ b/test/doctool/test-doctool-json.js @@ -1,9 +1,9 @@ 'use strict'; const common = require('../common'); -// The doctool currently uses js-yaml from the tool/eslint/ tree. +// The doctool currently uses js-yaml from the tool/node_modules/eslint/ tree. try { - require('../../tools/eslint/node_modules/js-yaml'); + require('../../tools/node_modules/eslint/node_modules/js-yaml'); } catch (e) { common.skip('missing js-yaml (eslint not present)'); }