We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6280338 + e1a7c48 commit 172e589Copy full SHA for 172e589
2 files changed
test/EntityFramework6.Npgsql.Tests/EntityFrameworkBasicTests.cs
@@ -85,12 +85,6 @@ public void InsertAndSelect()
85
[Test]
86
public void InsertAndSelectSchemaless()
87
{
88
- using (var context = new BloggingContext(ConnectionString))
89
- {
90
- context.Database.Delete();
91
- context.Database.Create();
92
- }
93
-
94
using (var context = new BloggingContext(ConnectionString))
95
96
context.NoColumnsEntities.Add(new NoColumnsEntity());
test/EntityFramework6.Npgsql.Tests/Support/EntityFrameworkTestBase.cs
@@ -73,6 +73,7 @@ protected void SetUp()
73
74
context.Blogs.RemoveRange(context.Blogs);
75
context.Posts.RemoveRange(context.Posts);
76
+ context.NoColumnsEntities.RemoveRange(context.NoColumnsEntities);
77
context.SaveChanges();
78
}
79
0 commit comments