Skip to content

Commit

Permalink
Wrong Self param name
Browse files Browse the repository at this point in the history
  • Loading branch information
ambiguousname committed Jan 21, 2025
1 parent b43bf86 commit 4846098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feature_tests/demo_gen/test/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test("My String", (t) => {

test("Cyclic Parameters", (t) => {
t.is(RenderInfo.termini["CyclicStructA.cyclicOut"].parameters[0].name, "CyclicStructA:A:Field");
t.is(RenderInfo.termini["CyclicStructC.cyclicOut"].parameters[0].name, "CyclicStructA:A:A:Field");
t.is(RenderInfo.termini["CyclicStructC.cyclicOut"].parameters[0].name, "CyclicStructC:A:A:Field");
t.is(CyclicStructADemo.cyclicOut(10), "10");
t.is(CyclicStructCDemo.cyclicOut(15), "15");
});

0 comments on commit 4846098

Please sign in to comment.