Commit d054639c authored by Greg Messner's avatar Greg Messner
Browse files

Simplified test.

parent 77cc775f
......@@ -84,12 +84,7 @@ public class TestGitLabApiException extends AbstractIntegrationTest {
Project project = new Project()
.withName(TEST_PROJECT_NAME_DUPLICATE)
.withDescription("GitLab4J test project.")
.withIssuesEnabled(true)
.withMergeRequestsEnabled(true)
.withWikiEnabled(true)
.withSnippetsEnabled(true)
.withVisibility(Visibility.PUBLIC)
.withTagList(Arrays.asList("tag1", "tag2"));
.withVisibility(Visibility.PUBLIC);
Project newProject = gitLabApi.getProjectApi().createProject(project);
assertNotNull(newProject);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment