Skip to content

Commit 35fd560

Browse files
test(indexer-sqlite3): avoid unused variant warnings
1 parent 227fffe commit 35fd560

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/utils/indexer/sqlite3/test/schema.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe("schema", () => {
3333
abstract class ChildBase {}
3434

3535
@variant(0)
36-
class ChildV0 extends ChildBase {
36+
class _ChildV0 extends ChildBase {
3737
@field({ type: "string" })
3838
value: string;
3939

@@ -44,7 +44,7 @@ describe("schema", () => {
4444
}
4545

4646
@variant(1)
47-
class ChildV1 extends ChildBase {
47+
class _ChildV1 extends ChildBase {
4848
@field({ type: "string" })
4949
value: string;
5050

@@ -95,7 +95,7 @@ describe("schema", () => {
9595
abstract class ChildBase {}
9696

9797
@variant(0)
98-
class ChildV0 extends ChildBase {
98+
class _ChildV0 extends ChildBase {
9999
@field({ type: "string" })
100100
value: string;
101101

0 commit comments

Comments
 (0)