Skip to content

Commit

Permalink
Use truncate instead of delete for test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkAndshark committed Oct 11, 2024
1 parent 864551a commit a8abeb4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public void Setup()
{
using (var db = new PostGisTestDataConnection(TestDatabaseConnectionString))
{
db.TestGeometries.Delete();
db.TestGeographies.Delete();
db.TestGeometries.Truncate();
db.TestGeographies.Truncate();
}
}

Expand Down

0 comments on commit a8abeb4

Please sign in to comment.