You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2017/08/19 00:10:26 UTC

[31/51] [abbrv] geode git commit: GEODE-3249: internal messages should require credentials

GEODE-3249: internal messages should require credentials

Removed unnecessary statement in one of the tests added for this ticket.


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

Branch: refs/heads/feature/GEODE-1279
Commit: 7cbbf67f3ae313920421fe24f15a72ce27ea2308
Parents: 83c1916
Author: Bruce Schuchardt <bs...@pivotal.io>
Authored: Thu Aug 17 10:12:18 2017 -0700
Committer: Bruce Schuchardt <bs...@pivotal.io>
Committed: Thu Aug 17 10:13:38 2017 -0700

----------------------------------------------------------------------
 .../apache/geode/security/ClientAuthenticationPart2DUnitTest.java   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/7cbbf67f/geode-core/src/test/java/org/apache/geode/security/ClientAuthenticationPart2DUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/security/ClientAuthenticationPart2DUnitTest.java b/geode-core/src/test/java/org/apache/geode/security/ClientAuthenticationPart2DUnitTest.java
index 5a78535..f8ebe05 100644
--- a/geode-core/src/test/java/org/apache/geode/security/ClientAuthenticationPart2DUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/security/ClientAuthenticationPart2DUnitTest.java
@@ -59,7 +59,6 @@ public class ClientAuthenticationPart2DUnitTest extends ClientAuthenticationTest
       Message message = mock(Message.class);
       when(message.getMessageType()).thenReturn(oldInternalMessages[i]);
 
-      serverConnection.setRequestMsg(message);
       Assert.assertFalse(serverConnection.isInternalMessage(message, false));
       Assert.assertTrue(serverConnection.isInternalMessage(message, true));
     }