We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4104769 commit 2534444Copy full SHA for 2534444
tests/QueryableValues.SqlServer.Tests/Integration/DbContextFixture.cs
@@ -16,7 +16,6 @@ public DbContextFixture()
16
17
public void Dispose()
18
{
19
- Db.Dispose();
20
}
21
22
public async Task InitializeAsync()
@@ -88,9 +87,10 @@ private async Task Seed()
88
87
await Db.SaveChangesAsync();
89
90
91
- public Task DisposeAsync()
+ public async Task DisposeAsync()
92
93
- return Task.CompletedTask;
+ await Db.Database.EnsureDeletedAsync();
+ Db.Dispose();
94
95
96
0 commit comments