You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ni...@apache.org on 2021/03/16 09:32:32 UTC

[ignite] branch IGNITE-14320-2 updated: IGNITE-14320 Fix invocation .Net -> .Net services with system types arguments.

This is an automated email from the ASF dual-hosted git repository.

nizhikov pushed a commit to branch IGNITE-14320-2
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/IGNITE-14320-2 by this push:
     new 09169e0  IGNITE-14320 Fix invocation .Net -> .Net services with system types arguments.
09169e0 is described below

commit 09169e04da30bada0595c5fb79eb1fabc48b4d8f
Author: Nikolay Izhikov <ni...@apache.org>
AuthorDate: Tue Mar 16 12:32:07 2021 +0300

    IGNITE-14320 Fix invocation .Net -> .Net services with system types arguments.
---
 .../Services/ServicesTypeAutoResolveTest.cs                         | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTypeAutoResolveTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTypeAutoResolveTest.cs
index 3de31ab..1ad4854 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTypeAutoResolveTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTypeAutoResolveTest.cs
@@ -23,8 +23,6 @@ namespace Apache.Ignite.Core.Tests.Services
     using System.Linq;
     using System.Reflection;
     using Apache.Ignite.Core.Binary;
-    using Apache.Ignite.Core.Impl.Binary;
-    using Apache.Ignite.Core.Services;
     using NUnit.Framework;
     using Apache.Ignite.Platform.Model;
 
@@ -228,10 +226,10 @@ namespace Apache.Ignite.Core.Tests.Services
             Assert.NotNull(users);
             Assert.AreEqual(2, users.Length);
             Assert.AreEqual(1, users[0].Id);
-            Assert.AreEqual(ACL.ALLOW, users[0].Acl);
+            Assert.AreEqual(ACL.Allow, users[0].Acl);
             Assert.AreEqual("admin", users[0].Role.Name);
             Assert.AreEqual(2, users[1].Id);
-            Assert.AreEqual(ACL.DENY, users[1].Acl);
+            Assert.AreEqual(ACL.Deny, users[1].Acl);
             Assert.AreEqual("user", users[1].Role.Name);
         }