Skip to content

Commit

Permalink
fix vec tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Nov 2, 2023
1 parent dfcc099 commit 4abdee5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion property_tests/tests/vec/test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const VecTestArb = fc
)
.map(([functionName, paramVecs, defaultReturnVec]): TestSample => {
const imports = new Set([
...paramVecs.flatMap((vec) => [...vec.src.imports])
...paramVecs.flatMap((vec) => [...vec.src.imports]),
...defaultReturnVec.src.imports
]);

const paramNames = paramVecs.map((_, index) => `param${index}`);
Expand Down

0 comments on commit 4abdee5

Please sign in to comment.