Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelOwenDyer committed Oct 31, 2024
1 parent 68d84fa commit a3d0d85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ void testRunIdIngestionJob() throws Exception {
assertThat(dto.settings().authenticationToken()).isNotNull();
});
String newJobToken = pyrisJobService.addIngestionWebhookJob();
String chatJobToken = pyrisJobService.registerJob(token -> new CourseChatJob(token, 123L, 123L));
String chatJobToken = pyrisJobService.registerJob(token -> new CourseChatJob(token, 123L, 123L, 123L));
PyrisStageDTO errorStage = new PyrisStageDTO("error", 1, PyrisStageState.ERROR, "Stage not broke due to error.");
PyrisLectureIngestionStatusUpdateDTO statusUpdate = new PyrisLectureIngestionStatusUpdateDTO("Success", List.of(errorStage));
var headers = new HttpHeaders(new LinkedMultiValueMap<>(Map.of("Authorization", List.of("Bearer " + chatJobToken))));
Expand Down

0 comments on commit a3d0d85

Please sign in to comment.