You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/11/05 04:28:19 UTC

[27/66] [abbrv] ignite git commit: IGNITE-950 - Use WithKeepPortable() to remove values in after test to avoid deserialization.

IGNITE-950 - Use WithKeepPortable() to remove values in after test to avoid deserialization.


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

Branch: refs/heads/ignite-1753-1282
Commit: 7b9136ea20a5143bf56c6c6c8a5aa457e4ac5d86
Parents: 2e39d74
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Tue Nov 3 13:16:46 2015 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Tue Nov 3 13:16:46 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/7b9136ea/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTest.cs
index ca85a2a..26a142b 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTest.cs
@@ -342,7 +342,7 @@ namespace Apache.Ignite.Core.Tests.Cache
         [TearDown]
         public virtual void AfterTest() {
             for (int i = 0; i < GridCount(); i++) 
-                Cache(i).RemoveAll();
+                Cache(i).WithKeepPortable<object, object>().RemoveAll();
 
             for (int i = 0; i < GridCount(); i++)
             {