Remove unnecessary colon

This commit is contained in:
David Glasser
2014-08-25 12:05:40 -07:00
parent 231f74bbb6
commit 0ce077f350
2 changed files with 2 additions and 3 deletions

View File

@@ -1208,8 +1208,7 @@ main.registerCommand({
var description = version + versionAddendum +
(versionInfo.description ?
(": " + versionInfo.description) :
"");
(" " + versionInfo.description) : "");
items.push({ name: name, description: description });
});

View File

@@ -190,7 +190,7 @@ selftest.define("list-with-a-new-version",
s.cd('mapp', function () {
run = s.run("list");
run.match(fullPackageName);
run.match("1.0.0*:");
run.match("1.0.0*");
run.match("New versions");
run.match("meteor update");
run.expectExit(0);