From 8f4ee123aece7ebed42e2db99f3db71ea347769f Mon Sep 17 00:00:00 2001 From: ekatek Date: Thu, 10 Jul 2014 18:12:47 -0700 Subject: [PATCH] fixing update tests --- tools/commands-packages.js | 2 +- tools/tests/autoupdate.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/commands-packages.js b/tools/commands-packages.js index ac27a25a2d..5498aa1eee 100644 --- a/tools/commands-packages.js +++ b/tools/commands-packages.js @@ -1147,7 +1147,7 @@ main.registerCommand({ process.stdout.write(path.basename(options.appDir) + ": updated to " + utils.displayRelease(releaseTrack, solutionReleaseVersion) + - ". \n"); + ".\n"); // Now run the upgraders. // XXX should we also run upgraders on other random commands, in case there diff --git a/tools/tests/autoupdate.js b/tools/tests/autoupdate.js index 27d4e8822c..c908e7b1d2 100644 --- a/tools/tests/autoupdate.js +++ b/tools/tests/autoupdate.js @@ -126,8 +126,8 @@ selftest.define("autoupdate", ['checkout'], function () { run.stop(); run = s.run("update"); - run.read("myapp: updated to Meteor v3.\n"); - run.read("All your package dependencies are already up to date.\n"); + run.read("myapp: updated to Meteor v3."); + run.match("All your package dependencies are already up to date.\n"); run.expectEnd(); run.expectExit(0);