Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf King <rkg@mm-software.com>
  • Loading branch information
rkg-mm committed Oct 3, 2024
1 parent 5fc4375 commit 5ad555c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1470,7 +1470,7 @@ public void uploadBomCollectionProjectTest() throws Exception {
qm.updateProject(project, false);

String bomString = Base64.getEncoder().encodeToString(resourceToByteArray("/unit/bom-1.xml"));
BomSubmitRequest request = new BomSubmitRequest(project.getUuid().toString(), null, null, null, false, bomString);
BomSubmitRequest request = new BomSubmitRequest(project.getUuid().toString(), null, null, null, false, false, bomString);
Response response = jersey.target(V1_BOM).request()
.header(X_API_KEY, apiKey)
.put(Entity.entity(request, MediaType.APPLICATION_JSON));
Expand Down

0 comments on commit 5ad555c

Please sign in to comment.