We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec04365 commit fe10937Copy full SHA for fe10937
1 file changed
TestSqlLiteDatabase/TransactionTest.cs
@@ -58,7 +58,10 @@ public async Task TestTransactionAsync()
58
SqlLiteDatabase db =
59
new SqlLiteDatabase(RandomNameMemDbConnectionString());
60
61
- await db.ProcessAsync(async (connection) => { CreateTableForTest(connection); });
+ await db.ProcessAsync(async (connection) => {
62
+ await Task.Delay(1);
63
+ CreateTableForTest(connection);
64
+ });
65
66
try
67
{
0 commit comments