summaryrefslogtreecommitdiff
path: root/test/sequential/test-debugger-low-level.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-06-25 22:11:59 -0700
committerMichaël Zasso <targos@protonmail.com>2021-07-11 09:43:54 +0200
commitfff21a4afbc2debf4f4a6bcaba308ce4a9609f46 (patch)
tree728d08a269828d8df9ad384a352b70cf39b4f0ae /test/sequential/test-debugger-low-level.js
parentaafa08d7b942166c8a55e2a871b5f8d3c91b4dd3 (diff)
downloadnode-new-fff21a4afbc2debf4f4a6bcaba308ce4a9609f46.tar.gz
test: replace "inspector-cli" with "debugger"
When I moved node-inspect into core, I called a lot of things `inspector-cli` that really should have been `debugger`. This is the last of them to be renamed. PR-URL: https://github.com/nodejs/node/pull/39156 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/sequential/test-debugger-low-level.js')
-rw-r--r--test/sequential/test-debugger-low-level.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sequential/test-debugger-low-level.js b/test/sequential/test-debugger-low-level.js
index 2613e4a4bb..f6d97f2dfe 100644
--- a/test/sequential/test-debugger-low-level.js
+++ b/test/sequential/test-debugger-low-level.js
@@ -9,8 +9,8 @@ const assert = require('assert');
// Debugger agent direct access.
{
- const cli = startCLI([fixtures.path('inspector-cli/three-lines.js')]);
- const scriptPattern = /^\* (\d+): \S+inspector-cli(?:\/|\\)three-lines\.js/m;
+ const cli = startCLI([fixtures.path('debugger/three-lines.js')]);
+ const scriptPattern = /^\* (\d+): \S+debugger(?:\/|\\)three-lines\.js/m;
function onFatal(error) {
cli.quit();