Skip to content

Commit 33e1f17

Browse files
committed
fixup!
1 parent 3afd177 commit 33e1f17

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/inspector_js_api.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ class JSBindingsConnection : public BaseObject {
212212

213213
if (session->session_) {
214214
Isolate* isolate = info.GetIsolate();
215-
session->session_->Dispatch(ToInspectorString(isolate, info[0])->string());
215+
session->session_->Dispatch(
216+
ToInspectorString(isolate, info[0])->string());
216217
if (!isolate->IsExecutionTerminating()) {
217218
isolate->PerformMicrotaskCheckpoint();
218219
}

test/parallel/test-repl-sigint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ child.on('close', common.mustCall((code) => {
5050
stdout.includes('42042\n'),
5151
`Expected stdout to contain "42042", got ${stdout}`
5252
);
53-
}));
53+
}));

0 commit comments

Comments
 (0)