Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsonax committed Apr 5, 2024
1 parent 931da73 commit 5970e2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TestExamplesDotnet/PooledDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ public void EnsureDatabaseIsReadyForTest(IHost host)
});
}

public async ValueTask DisposeAsync()
public ValueTask DisposeAsync()
{
_pool.Return(_database);
return ValueTask.CompletedTask;
}
}

0 comments on commit 5970e2b

Please sign in to comment.