You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2014/02/26 15:00:23 UTC

svn commit: r1572074 - /incubator/npanday/trunk/dotnet/assemblies/NPanday.VisualStudio.Addin/src/test/csharp/AddWebReferenceTest.cs

Author: brett
Date: Wed Feb 26 15:00:22 2014
New Revision: 1572074

URL: http://svn.apache.org/r1572074
Log:
allow test files to be overwritten

so they don't fail intermittently

Modified:
    incubator/npanday/trunk/dotnet/assemblies/NPanday.VisualStudio.Addin/src/test/csharp/AddWebReferenceTest.cs

Modified: incubator/npanday/trunk/dotnet/assemblies/NPanday.VisualStudio.Addin/src/test/csharp/AddWebReferenceTest.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.VisualStudio.Addin/src/test/csharp/AddWebReferenceTest.cs?rev=1572074&r1=1572073&r2=1572074&view=diff
==============================================================================
--- incubator/npanday/trunk/dotnet/assemblies/NPanday.VisualStudio.Addin/src/test/csharp/AddWebReferenceTest.cs (original)
+++ incubator/npanday/trunk/dotnet/assemblies/NPanday.VisualStudio.Addin/src/test/csharp/AddWebReferenceTest.cs Wed Feb 26 15:00:22 2014
@@ -61,8 +61,8 @@ namespace NPanday.VisualStudio.Addin_Tes
         [SetUp]
         public void TestSetUp()
         {
-            File.Copy(pomPath, pomCopyPath);
-            File.Copy(pomPath2, pomCopyPath2);
+            File.Copy(pomPath, pomCopyPath, true);
+            File.Copy(pomPath2, pomCopyPath2, true);
 
             pomCopy = new PomHelperUtility(pomCopyPath);
             pomCopy2 = new PomHelperUtility(pomCopyPath2);