From 01e87125a0d5a74fdc5c976e8ecb932269b09028 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 10 May 2016 20:04:20 -0700 Subject: [PATCH] test: fix test-debugger-repl-term test-debugger-repl-term had incorrect expected output and so was failing. It was likely dependent on previous bugs in the debugger. The fixture file has been modified so that the output is as expected. PR-URL: https://github.com/nodejs/node/pull/6682 Reviewed-By: Santiago Gimeno Reviewed-By: Ben Noorhduis --- test/fixtures/breakpoints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/breakpoints.js b/test/fixtures/breakpoints.js index 4824767ff0051d..43cfca1c9b11ab 100644 --- a/test/fixtures/breakpoints.js +++ b/test/fixtures/breakpoints.js @@ -9,12 +9,12 @@ function b() { return ['hello', 'world'].join(' '); } a(); +debugger; a(1); b(); b(); - setInterval(function() { }, 5000);