Skip to content

Commit

Permalink
revert fix of TestCreateAlreadyExistingProject
Browse files Browse the repository at this point in the history
  • Loading branch information
miryamfoiferCX committed Sep 10, 2024
1 parent c3bbcb8 commit 914521e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration/project_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ func TestCreateEmptyProjectName(t *testing.T) {
func TestCreateAlreadyExistingProject(t *testing.T) {
assertRequiredParameter(t, "Project name is required", "project", "create")

_, projectName := getRootProject(t)
err, _ := executeCommand(
t, "project", "create", flag(params.FormatFlag),
printer.FormatJSON, flag(params.ProjectName), projectNameRandom,
printer.FormatJSON, flag(params.ProjectName), projectName,
)
assertError(t, err, "Failed creating a project: CODE: 208, Failed to create a project, project name")
}
Expand Down

0 comments on commit 914521e

Please sign in to comment.