File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
test/EntityFramework6.Npgsql.Tests Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,6 @@ public void InsertAndSelect()
8585 [ Test ]
8686 public void InsertAndSelectSchemaless ( )
8787 {
88- using ( var context = new BloggingContext ( ConnectionString ) )
89- {
90- context . Database . Delete ( ) ;
91- context . Database . Create ( ) ;
92- }
93-
9488 using ( var context = new BloggingContext ( ConnectionString ) )
9589 {
9690 context . NoColumnsEntities . Add ( new NoColumnsEntity ( ) ) ;
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ protected void SetUp()
7373 {
7474 context . Blogs . RemoveRange ( context . Blogs ) ;
7575 context . Posts . RemoveRange ( context . Posts ) ;
76+ context . NoColumnsEntities . RemoveRange ( context . NoColumnsEntities ) ;
7677 context . SaveChanges ( ) ;
7778 }
7879 }
You can’t perform that action at this time.
0 commit comments