We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 849991f commit bb1a8f3Copy full SHA for bb1a8f3
gobblin-temporal/src/test/java/org/apache/gobblin/temporal/yarn/YarnServiceTest.java
@@ -143,8 +143,8 @@ public void testHandleJobFailureEvent() throws Exception {
143
144
// Waiting for the event to be handled
145
Thread.sleep(100);
146
- Assert.assertEquals(yarnService.getJobState().getJobName(),"name");
147
- Assert.assertEquals(yarnService.getJobState().getJobId(),"id");
148
- Assert.assertEquals(yarnService.getJobIssuesSummary(),"summary");
+ Assert.assertEquals(yarnService.jobSummaryEvent.getJobState().getJobName(),"name");
+ Assert.assertEquals(yarnService.jobSummaryEvent.getJobState().getJobId(),"id");
+ Assert.assertEquals(yarnService.jobSummaryEvent.getIssuesSummary(),"summary");
149
}
150
0 commit comments