Skip to content

Commit cb2d0ad

Browse files
committed
fix(cli): update test expectation for new version output format
The test was expecting the old output format "Updated version at" but the new format is "Updated version {name} at". Updated the test to match the beginning of the output string.
1 parent d53c8d8 commit cb2d0ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/templatepush_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func TestTemplatePush(t *testing.T) {
106106
inv = inv.WithContext(ctx)
107107
w := clitest.StartWithWaiter(t, inv)
108108

109-
pty.ExpectNoMatchBefore(ctx, "Template message is longer than 72 characters", "Updated version at")
109+
pty.ExpectNoMatchBefore(ctx, "Template message is longer than 72 characters", "Updated version")
110110

111111
w.RequireSuccess()
112112

0 commit comments

Comments
 (0)