We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77cc775 commit d054639Copy full SHA for d054639
src/test/java/org/gitlab4j/api/TestGitLabApiException.java
@@ -84,12 +84,7 @@ public void testValidationErrors() throws GitLabApiException {
84
Project project = new Project()
85
.withName(TEST_PROJECT_NAME_DUPLICATE)
86
.withDescription("GitLab4J test project.")
87
- .withIssuesEnabled(true)
88
- .withMergeRequestsEnabled(true)
89
- .withWikiEnabled(true)
90
- .withSnippetsEnabled(true)
91
- .withVisibility(Visibility.PUBLIC)
92
- .withTagList(Arrays.asList("tag1", "tag2"));
+ .withVisibility(Visibility.PUBLIC);
93
94
Project newProject = gitLabApi.getProjectApi().createProject(project);
95
assertNotNull(newProject);
0 commit comments