Skip to content

Commit 7c28762

Browse files
committed
fix test
1 parent 7e08e86 commit 7c28762

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cases/flavorful/world.wit

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ interface test {
2828
type list-typedef = string;
2929
type list-typedef2 = list<u8>;
3030
type list-typedef3 = list<string>;
31-
list-typedefs: func(a: list-typedef, c: list-typedef3) -> (a: list-typedef2, b: list-typedef3);
31+
list-typedefs: func(a: list-typedef, c: list-typedef3) -> tuple<list-typedef2, list-typedef3>;
3232

3333
list-of-variants: func(a: list<bool>, b: list<result>, c: list<my-errno>)
34-
-> (a: list<bool>, b: list<result>, c: list<my-errno>);
34+
-> tuple<list<bool>, list<result>, list<my-errno>>;
3535
}
3636

3737
world flavorful {

0 commit comments

Comments
 (0)