You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by mm...@apache.org on 2020/08/05 18:10:13 UTC

[geode-native] 07/07: Rename SNI test and remove unneccessary test

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

mmartell pushed a commit to branch GEODE-8398-sni-support-dotnet
in repository https://gitbox.apache.org/repos/asf/geode-native.git

commit 167dfad395a45ca3fcb87602c1b41ef1dd7ae10d
Author: Mike Martell <mm...@pivotal.io>
AuthorDate: Wed Aug 5 11:07:11 2020 -0700

    Rename SNI test and remove unneccessary test
---
 clicache/integration-test2/SNITests.cs | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/clicache/integration-test2/SNITests.cs b/clicache/integration-test2/SNITests.cs
index 3e96ce5..2a004f5 100644
--- a/clicache/integration-test2/SNITests.cs
+++ b/clicache/integration-test2/SNITests.cs
@@ -88,7 +88,7 @@ namespace Apache.Geode.Client.IntegrationTests
         }
 
         [Fact]
-        public void ConnectViaProxyTest()
+        public void ConnectViaProxy()
         {
             var portString = RunDockerCommand("port haproxy");
             var portNumber = ParseProxyPort(portString);
@@ -111,7 +111,7 @@ namespace Apache.Geode.Client.IntegrationTests
         }
 
         [Fact]
-        public void ConnectionFailsTest()
+        public void ConnectionWithoutProxyFails()
         {
             cache_.GetPoolManager()
                 .CreateFactory()
@@ -124,14 +124,5 @@ namespace Apache.Geode.Client.IntegrationTests
 
             Assert.Throws<NotConnectedException>(() => region.Put("1", "one"));
         }
-
-        [Fact]
-        public void DoNothingTest()
-        {
-            cache_.GetPoolManager()
-                .CreateFactory()
-                .AddLocator("localhost", 10334)
-                .Create("pool");
-        }
     }
 }
\ No newline at end of file