Skip to content

Commit 96a5dc1

Browse files
committed
Fix tests
1 parent 900f351 commit 96a5dc1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/commands/create_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,10 @@ func TestRunCreate_realAPI(t *testing.T) {
6969
err := RunCreate(*scopedCtx, args)
7070
So(err, ShouldBeNil)
7171
So(scopedStderr.String(), ShouldBeEmpty)
72-
So(scopedStdout.String(), shouldBeAnUUID)
7372

7473
uuid := strings.TrimSpace(scopedStdout.String())
74+
So(uuid, shouldBeAnUUID)
75+
7576
createdUUIDs = append(createdUUIDs, uuid)
7677
})
7778

0 commit comments

Comments
 (0)