We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdca32e commit d89277aCopy full SHA for d89277a
dart/test/crud_test.dart
@@ -818,7 +818,8 @@ void main() {
818
db.execute('CREATE TABLE users (name TEXT);');
819
expect(
820
() => createRawTableTriggers(rawTableDescription({})),
821
- throwsA(isSqliteException(3091, contains('Table has no local name'))),
+ throwsA(isSqliteException(
822
+ 3091, contains('Raw table row_type has no local name'))),
823
);
824
});
825
0 commit comments