diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/IngestionRecentRun/IngestionRecentRun.test.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/IngestionRecentRun/IngestionRecentRun.test.tsx index 8ff1cece3640..54674a8a418f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/IngestionRecentRun/IngestionRecentRun.test.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/IngestionRecentRun/IngestionRecentRun.test.tsx @@ -233,7 +233,7 @@ describe('Test IngestionRecentRun component', () => { it('should show additional details for click on run', async () => { (getRunHistoryForPipeline as jest.Mock).mockResolvedValueOnce({ - data: executionRuns, + data: [...executionRuns], paging: { total: 4 }, }); @@ -266,7 +266,7 @@ describe('Test IngestionRecentRun component', () => { it('should show stacktrace when click on logs', async () => { (getRunHistoryForPipeline as jest.Mock).mockResolvedValueOnce({ - data: executionRuns, + data: [...executionRuns], paging: { total: 4 }, });