Skip to content

Commit

Permalink
increasing the timeout for running on github
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins authored and manusa committed Dec 20, 2022
1 parent b6879c4 commit 1e42516
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void create() throws Exception {
client.projects()
.withName(name)
.informOnCondition(pl -> pl.stream().anyMatch(p -> p.getMetadata().getName().equals(name)))
.get(1, TimeUnit.SECONDS);
.get(30, TimeUnit.SECONDS);
final Project createdProject = client.projects().withName(name).get();
assertNotNull(createdProject);
assertEquals(name, createdProject.getMetadata().getName());
Expand Down

0 comments on commit 1e42516

Please sign in to comment.