Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Avalos Ribas authored and Gonzalo Avalos Ribas committed Oct 5, 2023
1 parent 0147cf6 commit 7f5ce50
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -712,13 +712,13 @@ describe('executeStepDependencyGraph', () => {
stepStartStates,
graphObjectStore,
(stepId) => {
return createPassingUploader(stepId, passingUploaderCollector);
return createPassingUploader(stepId, passingUploaderCollector);
},
);

const expectedCollected: FlushedGraphObjectData[] = [
{
entities: [eA,eB,eC],
entities: [eA, eB, eC],
relationships: [],
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,12 @@ export function executeStepDependencyGraph<
})
: undefined,
async (relationships) =>
relationships.length ?
uploader?.enqueue({
entities: [],
relationships,
}) : undefined,
relationships.length
? uploader?.enqueue({
entities: [],
relationships,
})
: undefined,
);
try {
await uploader?.waitUntilUploadsComplete();
Expand Down

0 comments on commit 7f5ce50

Please sign in to comment.