Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoox committed Dec 11, 2024
1 parent f8d8aca commit 1fe2f94
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static org.assertj.core.api.Assertions.assertThat;

import java.io.File;
import java.util.Set;
import java.util.Collection;
import java.util.concurrent.ForkJoinPool;
import java.util.stream.Stream;

Expand Down Expand Up @@ -153,7 +153,7 @@ public HttpResponse read(@Param String projectName,
@ParameterizedTest
@MethodSource("arguments")
void test(@Nullable String appId, String secret, String projectName, ProjectRole role, String repoName,
Set<Permission> permission, HttpStatus expectedFailureStatus) throws InterruptedException {
Collection<Permission> permission, HttpStatus expectedFailureStatus) throws InterruptedException {
final WebClient client = WebClient.builder(server.httpUri())
.addHeader(HttpHeaderNames.AUTHORIZATION, "Bearer " + secret)
.build();
Expand Down

0 comments on commit 1fe2f94

Please sign in to comment.