Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
DieMyst committed May 31, 2024
1 parent 97ecb13 commit 1e30e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration-tests/src/__test__/examples.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ describe("Testing examples", () => {
const [resEmpty, resFirst, resSecond] = await testKeysFuncCall();
expect(resEmpty).toEqual([]);
expect(resFirst).toEqual(["key one"]);
expect(resSecond).toEqual(["key one", "key two"]);
expect(resSecond).toEqual(["key one", "key two", "key one", "key one"]);
});

it("streamMap.aqua keysStream function call", async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ object ApplyStreamMapRawInliner {
CanonicalizeModel(mapVar, CallModel.Export(canonMap.name, canonMap.`type`)).leaf,
idxModel,
FlattenModel(
canonMap.withProperty(IntoIndexModel(idx.name, CanonStreamType(mapType.element))),
canonMap.withProperty(IntoIndexModel(idx.name, ArrayType(mapType.element))),
resultName
).leaf
)
Expand Down

0 comments on commit 1e30e6f

Please sign in to comment.