Skip to content

Commit 07cbc1c

Browse files
committed
Fix drift3 test
1 parent d28ba78 commit 07cbc1c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

future/drift3/test/query_builder/statements/schema_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ void main() {
124124
);
125125

126126
expect(
127-
sql[8],
127+
sql[9],
128128
'CREATE VIEW IF NOT EXISTS "category_todo_count_view"'
129129
'("category_id","description","item_count") AS SELECT '
130130
'"t1"."id",'
@@ -137,7 +137,7 @@ void main() {
137137
);
138138

139139
expect(
140-
sql[9],
140+
sql[10],
141141
'CREATE VIEW IF NOT EXISTS "todo_with_category_view"'
142142
'("title","desc") AS SELECT '
143143
'"t0"."title",'
@@ -148,7 +148,7 @@ void main() {
148148
);
149149

150150
expect(
151-
sql[10],
151+
sql[11],
152152
'CREATE INDEX categories_desc ON categories ("desc" DESC, priority)',
153153
);
154154
});

0 commit comments

Comments
 (0)