Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/cli/trial_dry_run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ func TestDryRunNoActualAPICallsForCreate(t *testing.T) {
output := buf.String()

// Should not error
assert.NoError(t, err, "Dry-run should not error")
require.NoError(t, err, "Dry-run should not error")

// Should indicate that it would create the repository
if strings.Contains(output, "exists") {
Expand Down Expand Up @@ -333,7 +333,7 @@ func TestDryRunForceDeleteBehavior(t *testing.T) {
buf.ReadFrom(r)
output := buf.String()

assert.NoError(t, err, "Should not error in dry-run mode")
require.NoError(t, err, "Should not error in dry-run mode")
assert.Contains(t, output, "[DRY RUN]", "Should show dry-run prefix")
})
}
Expand Down
Loading