Skip to content

Commit 0048169

Browse files
committed
test: fix path in doctool/test-doctool-json
PR-URL: #19287 Refs: #17820 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 90e70b8 commit 0048169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/doctool/test-doctool-json.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict';
22

33
const common = require('../common');
4-
// The doctool currently uses js-yaml from the tool/eslint/ tree.
4+
// The doctool currently uses js-yaml from the tool/node_modules/eslint/ tree.
55
try {
6-
require('../../tools/eslint/node_modules/js-yaml');
6+
require('../../tools/node_modules/eslint/node_modules/js-yaml');
77
} catch (e) {
88
common.skip('missing js-yaml (eslint not present)');
99
}

0 commit comments

Comments
 (0)