-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from CircleCI-Public/consistent-promote-inc
Ensure consistency on output for promote/increment
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -662,7 +662,7 @@ var _ = Describe("Orb integration tests", func() { | |
session, err := gexec.Start(command, GinkgoWriter, GinkgoWriter) | ||
|
||
Expect(err).ShouldNot(HaveOccurred()) | ||
Eventually(session.Out).Should(gbytes.Say("Orb `my/orb` bumped to '0.1.0'.")) | ||
Eventually(session.Out).Should(gbytes.Say("Orb `my/orb@0.1.0` was published.")) | ||
Eventually(session.Out).Should(gbytes.Say("Please note that this is an open orb and is world-readable.")) | ||
Eventually(session).Should(gexec.Exit(0)) | ||
}) | ||
|
@@ -826,7 +826,7 @@ var _ = Describe("Orb integration tests", func() { | |
session, err := gexec.Start(command, GinkgoWriter, GinkgoWriter) | ||
|
||
Expect(err).ShouldNot(HaveOccurred()) | ||
Eventually(session.Out).Should(gbytes.Say("Orb `my/orb@dev:foo` promoted to '0.1.0'.")) | ||
Eventually(session.Out).Should(gbytes.Say("Orb `my/[email protected]` was published.")) | ||
Eventually(session.Out).Should(gbytes.Say("Please note that this is an open orb and is world-readable.")) | ||
Eventually(session).Should(gexec.Exit(0)) | ||
}) | ||
|