Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 15, 2024
1 parent aace1e6 commit b346e03
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,11 @@ private static Maybe<ItemCreatedRS> standardItemResponse(String id) {
}

@Test
@SuppressWarnings("ReactiveStreamsUnusedPublisher")
@SuppressWarnings({ "ResultOfMethodCallIgnored" })
public void test_rp_client_sends_correct_start_item_for_secondary_launch() {
List<Launch> launches = createLaunches(2, rpClient, paramSupplier.get(), launchIdLock, executor);
launches.get(0).start();
launches.get(1).start();
launches.get(0).start().blockingGet();
launches.get(1).start().blockingGet();

String itemUuid = UUID.randomUUID().toString();
simulateStartItemResponse(rpClient, itemUuid);
Expand Down

0 comments on commit b346e03

Please sign in to comment.