Merge pull request #1569 from westito/fix_virtual_table_test

Fix virtual table test
This commit is contained in:
Simon Binder 2021-11-28 20:43:51 +01:00 committed by GitHub
commit 43613ea6df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ CREATE VIRTUAL TABLE example_table_search
);
''',
'a|lib/queries.moor': '''
import 'table.moor';
exampleSearch: SELECT example_table.**, s.* FROM example_table
INNER JOIN (
@ -41,7 +42,7 @@ exampleSearch: SELECT example_table.**, s.* FROM example_table
expect(result.errors.errors, isEmpty);
});
test('query virtual tables with unknown fucntion', () async {
test('query virtual tables with unknown function', () async {
final state = TestState.withContent(
{
'a|lib/table.moor': '''