From 4cfd34d1e973593401d0ae4ede5dfb8bbd7a461b Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Sun, 16 Feb 2014 17:58:15 -0800 Subject: [PATCH] Fix my tweak to the npm self-test --- tools/tests/npm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/tests/npm.js b/tools/tests/npm.js index e38fedc46f..07a53f45ef 100644 --- a/tools/tests/npm.js +++ b/tools/tests/npm.js @@ -27,11 +27,11 @@ selftest.define("npm", ["net"], function () { run.waitSecs(2); // use match instead of read because on a built release we can // also get an update message here. - run.match( + run.read( "npm-test: updating npm dependencies -- meteor-test-executable...\n"); } run.waitSecs(15); - run.read("null; From shell script\n"); + run.match("null; From shell script\n"); run.expectEnd(); run.expectExit(0); });