You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2020/08/20 22:38:59 UTC

[geode-native] branch develop updated: GEODE-8443: Disable Windows SNI test as intended (#638)

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

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7106f00  GEODE-8443: Disable Windows SNI test as intended (#638)
7106f00 is described below

commit 7106f001eaaace8fec2ddfffb33b0836939a441b
Author: Blake Bender <bb...@pivotal.io>
AuthorDate: Thu Aug 20 15:38:53 2020 -0700

    GEODE-8443: Disable Windows SNI test as intended (#638)
    
    - It's being run in the test suite due to a typo
    
    Co-authored-by: Blake Bender <bb...@vmware.com>
---
 cppcache/integration/test/SNITest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cppcache/integration/test/SNITest.cpp b/cppcache/integration/test/SNITest.cpp
index e5052b7..0232bc6 100644
--- a/cppcache/integration/test/SNITest.cpp
+++ b/cppcache/integration/test/SNITest.cpp
@@ -118,7 +118,7 @@ class SNITest : public ::testing::Test {
 };
 
 #if defined(_WIN32)
-TEST_F(SNITest, DISABLE_connectViaProxyTest) {
+TEST_F(SNITest, DISABLED_connectViaProxyTest) {
 #else
 TEST_F(SNITest, connectViaProxyTest) {
 #endif