You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/03/30 11:31:35 UTC

ignite git commit: .NET: Minor fix to a test.

Repository: ignite
Updated Branches:
  refs/heads/master 12c707c81 -> a4b922caa


.NET: Minor fix to a test.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a4b922ca
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a4b922ca
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a4b922ca

Branch: refs/heads/master
Commit: a4b922caa251e8ffef0868e9ee3eaa1928564524
Parents: 12c707c
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Wed Mar 30 12:31:31 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Wed Mar 30 12:31:31 2016 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.Core.Tests/Examples/ProjectFilesTest.cs   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/a4b922ca/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ProjectFilesTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ProjectFilesTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ProjectFilesTest.cs
index 509618e..b99b54e 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ProjectFilesTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ProjectFilesTest.cs
@@ -41,7 +41,7 @@ namespace Apache.Ignite.Core.Tests.Examples
                 .Distinct()
                 .ToList();
 
-            Assert.AreEqual(4, paths.Count);
+            Assert.AreEqual(1, paths.Count);
 
             paths.ForEach(path => Assert.IsTrue(File.Exists(path), "Config file does not exist: " + path));
         }