Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,13 @@ func Test_RecipePacks_MissingNamespace_Failure(t *testing.T) {
cli := radcli.NewCLI(t, options.ConfigFilePath)

validate := step.ValidateSingleDetail("DeploymentFailed", step.DeploymentErrorDetail{
Code: "BadRequest",
MessageContains: "Namespace 'recipepacks-ns' does not exist in the Kubernetes cluster. Please create it before proceeding.",
Code: "ResourceDeploymentFailure",
Details: []step.DeploymentErrorDetail{
{
Code: "BadRequest",
MessageContains: "Namespace 'recipepacks-ns' does not exist in the Kubernetes cluster. Please create it before proceeding.",
},
},
})

test := rp.NewRPTest(t, appName, []rp.TestStep{
Expand Down
Loading