Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3A13219EB6 for ; Mon, 4 Apr 2016 18:38:08 +0000 (UTC) Received: (qmail 96574 invoked by uid 500); 4 Apr 2016 18:38:08 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 96292 invoked by uid 500); 4 Apr 2016 18:38:07 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 96098 invoked by uid 99); 4 Apr 2016 18:38:07 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Apr 2016 18:38:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4DDA2DFB8F; Mon, 4 Apr 2016 18:38:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ntikhonov@apache.org To: commits@ignite.apache.org Date: Mon, 04 Apr 2016 18:38:12 -0000 Message-Id: <3ad9e137a3bc4b739a64aa10974a9748@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [06/37] ignite git commit: .NET: Minor fix to a test. .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/ignite-2004 Commit: a4b922caa251e8ffef0868e9ee3eaa1928564524 Parents: 12c707c Author: vozerov-gridgain Authored: Wed Mar 30 12:31:31 2016 +0300 Committer: vozerov-gridgain 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)); }