Skip to content

Commit d89277a

Browse files
committed
Fix failing test
1 parent fdca32e commit d89277a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dart/test/crud_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,8 @@ void main() {
818818
db.execute('CREATE TABLE users (name TEXT);');
819819
expect(
820820
() => createRawTableTriggers(rawTableDescription({})),
821-
throwsA(isSqliteException(3091, contains('Table has no local name'))),
821+
throwsA(isSqliteException(
822+
3091, contains('Raw table row_type has no local name'))),
822823
);
823824
});
824825

0 commit comments

Comments
 (0)