mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Remove unnecessary colon
This commit is contained in:
@@ -1208,8 +1208,7 @@ main.registerCommand({
|
||||
|
||||
var description = version + versionAddendum +
|
||||
(versionInfo.description ?
|
||||
(": " + versionInfo.description) :
|
||||
"");
|
||||
(" " + versionInfo.description) : "");
|
||||
items.push({ name: name, description: description });
|
||||
|
||||
});
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user