From cdb231e1ae054710934e23e28455613e5752047c Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Fri, 16 Aug 2019 15:08:07 +0200 Subject: [PATCH] Update test case for custom queries We now use an explicit index when expanding arrays --- moor/test/custom_queries_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moor/test/custom_queries_test.dart b/moor/test/custom_queries_test.dart index c9dd9769..4c63e77c 100644 --- a/moor/test/custom_queries_test.dart +++ b/moor/test/custom_queries_test.dart @@ -19,7 +19,7 @@ void main() { verify( executor.runSelect( - 'SELECT * FROM todos WHERE title = ?2 OR id IN (?,?,?) OR title = ?1', + 'SELECT * FROM todos WHERE title = ?2 OR id IN (?3, ?4, ?5) OR title = ?1', ['one', 'two', 1, 2, 3], ), );