fix(editor): Fix type error in RunDataAi.test.ts (no-changelog) (#20436)

This commit is contained in:
Michael Drury 2025-10-06 16:23:34 +01:00 committed by GitHub
parent 2f38db86b5
commit f31d33cd10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,7 @@ describe('RunDataAi', () => {
beforeEach(() => {
setActivePinia(createTestingPinia({ stubActions: false }));
workflowsStore = useWorkflowsStore();
workflowsStore.setWorkflowExecutionData(executionResponse);
workflowsStore.workflowExecutionData = executionResponse;
});
it('should render the log that belong to given run index', async () => {