fixing update tests

This commit is contained in:
ekatek
2014-07-10 18:12:47 -07:00
parent 989c263d1a
commit 8f4ee123ae
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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);