Skip to content

Commit

Permalink
Fix test regression due to #77.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwasef1830 committed Sep 18, 2017
1 parent 6280338 commit e1a7c48
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ public void InsertAndSelect()
[Test]
public void InsertAndSelectSchemaless()
{
using (var context = new BloggingContext(ConnectionString))
{
context.Database.Delete();
context.Database.Create();
}

using (var context = new BloggingContext(ConnectionString))
{
context.NoColumnsEntities.Add(new NoColumnsEntity());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ protected void SetUp()
{
context.Blogs.RemoveRange(context.Blogs);
context.Posts.RemoveRange(context.Posts);
context.NoColumnsEntities.RemoveRange(context.NoColumnsEntities);
context.SaveChanges();
}
}
Expand Down

0 comments on commit e1a7c48

Please sign in to comment.