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 2011/12/31 06:18:26 UTC

svn commit: r1226048 - /incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/csharp/ImporterTests/ProjectImporterAssertions.cs

Author: brett
Date: Sat Dec 31 06:18:25 2011
New Revision: 1226048

URL: http://svn.apache.org/viewvc?rev=1226048&view=rev
Log:
fix typo in assertion

Modified:
    incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/csharp/ImporterTests/ProjectImporterAssertions.cs

Modified: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/csharp/ImporterTests/ProjectImporterAssertions.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/csharp/ImporterTests/ProjectImporterAssertions.cs?rev=1226048&r1=1226047&r2=1226048&view=diff
==============================================================================
--- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/csharp/ImporterTests/ProjectImporterAssertions.cs (original)
+++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/test/csharp/ImporterTests/ProjectImporterAssertions.cs Sat Dec 31 06:18:25 2011
@@ -81,7 +81,7 @@ namespace NPanday.ProjectImporter.Import
         {
             if (poms.Length != expected)
             {
-                Assert.Fail(string.Format("Expecting {0} pom files tobe generated, but only {1} are generated!!!", expected, poms.Length));
+                Assert.Fail(string.Format("Expecting {0} POM files to be generated, but {1} were generated!!!", expected, poms.Length));
             }
         }