Skip to content

Commit 66c3cb2

Browse files
committed
add missing tests
1 parent ca633ab commit 66c3cb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration-tests/lts/dbschema/default.esdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ module default {
149149
property c -> bool;
150150
}
151151
type Z {
152-
link xy -> W | X | Y;
152+
multi link xy -> W | X | Y;
153153
}
154154

155155
# Unicode handling

integration-tests/lts/interfaces.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface test_Profile extends BaseObject {
4343
c?: string | null;
4444
}
4545
interface test_Z extends BaseObject {
46-
xy?: W | X | Y | null;
46+
xy?: (W | X | Y)[];
4747
}
4848
interface test_User extends BaseObject {
4949
username: string;

0 commit comments

Comments
 (0)