Skip to content

Commit

Permalink
fix: missing body parameter for gh integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Oct 18, 2024
1 parent 1a42b63 commit 8be5715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion it/java/gh/src/test/java/GHAPITest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void basicTest() throws Exception {
var client = new ApiClient(adapter);

client.repos().byOrgId("my-owner").byRepoId("my-repo").get();
client.repos().byOrgId("my-owner").byRepoId("my-repo").generate().post(null);
client.repos().byOrgId("my-owner").byRepoId("my-repo").generate().post(new GeneratePostRequestBody());
}

}

0 comments on commit 8be5715

Please sign in to comment.