From 613654e882d9b3eda43680de0811d5f52caed994 Mon Sep 17 00:00:00 2001 From: Yazhong Liu Date: Tue, 1 Jul 2014 21:35:35 +0800 Subject: [PATCH] test: fix multiple_line problem in match Signed-off-by: Fedor Indutny --- test/simple/test-repl.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/simple/test-repl.js b/test/simple/test-repl.js index 63ddd57..69b9b54 100644 --- a/test/simple/test-repl.js +++ b/test/simple/test-repl.js @@ -82,7 +82,10 @@ function error_test() { if (read_buffer.indexOf(prompt_unix) !== -1) { // if it's an exact match, then don't do the regexp if (read_buffer !== client_unix.expect) { - assert.ok(read_buffer.match(client_unix.expect)); + var expect = client_unix.expect; + if (expect === prompt_multiline) + expect = /[\.]{3} /; + assert.ok(read_buffer.match(expect)); console.error('match'); } read_buffer = ''; -- 2.7.4