diff --git a/Tests/FiftyOne.Pipeline.Engines.Tests/Services/DataUpdateServiceTests.cs b/Tests/FiftyOne.Pipeline.Engines.Tests/Services/DataUpdateServiceTests.cs index f4e62445..a8b17cf2 100644 --- a/Tests/FiftyOne.Pipeline.Engines.Tests/Services/DataUpdateServiceTests.cs +++ b/Tests/FiftyOne.Pipeline.Engines.Tests/Services/DataUpdateServiceTests.cs @@ -663,6 +663,7 @@ public void DataUpdateService_UpdateFromUrl_UpdateAvailable() Mock engine = new Mock(); string tempPath = Path.GetTempPath(); string dataFile = Path.GetTempFileName(); + if (File.Exists(dataFile)) { File.Delete(dataFile); } try { // Configure the engine to return the relevant paths. @@ -847,6 +848,7 @@ public void DataUpdateService_UpdateFromUrl_HttpException() Mock engine = new Mock(); string tempPath = Path.GetTempPath(); string dataFile = Path.GetTempFileName(); + if (File.Exists(dataFile)) { File.Delete(dataFile); } try { // Configure the engine to return the relevant paths. diff --git a/Web Integration/Tests/FiftyOne.Pipeline.Web.Framework.Tests/app.config b/Web Integration/Tests/FiftyOne.Pipeline.Web.Framework.Tests/app.config index 41f83a8c..6c2e45bf 100644 --- a/Web Integration/Tests/FiftyOne.Pipeline.Web.Framework.Tests/app.config +++ b/Web Integration/Tests/FiftyOne.Pipeline.Web.Framework.Tests/app.config @@ -6,6 +6,10 @@ + + + + \ No newline at end of file