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

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


The following commit(s) were added to refs/heads/develop by this push:
     new eb829c6  GEODE-6143: Change PowerMockito import to Mockito
eb829c6 is described below

commit eb829c66985b4b11e3ad3ff520c2809adeb809e4
Author: Kirk Lund <[email protected]>
AuthorDate: Tue Dec 4 16:26:25 2018 -0800

    GEODE-6143: Change PowerMockito import to Mockito
    
    This was accidental and it should have been importing from Mockito.
---
 .../logging/log4j/FastLoggerWithDefaultConfigIntegrationTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/geode-core/src/integrationTest/java/org/apache/geode/internal/logging/log4j/FastLoggerWithDefaultConfigIntegrationTest.java
 
b/geode-core/src/integrationTest/java/org/apache/geode/internal/logging/log4j/FastLoggerWithDefaultConfigIntegrationTest.java
index ebab71c..42c3daa 100755
--- 
a/geode-core/src/integrationTest/java/org/apache/geode/internal/logging/log4j/FastLoggerWithDefaultConfigIntegrationTest.java
+++ 
b/geode-core/src/integrationTest/java/org/apache/geode/internal/logging/log4j/FastLoggerWithDefaultConfigIntegrationTest.java
@@ -17,7 +17,7 @@ package org.apache.geode.internal.logging.log4j;
 import static org.apache.geode.internal.logging.LogWriterLevel.INFO;
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.mockito.Mockito.mock;
-import static org.powermock.api.mockito.PowerMockito.when;
+import static org.mockito.Mockito.when;
 
 import org.apache.logging.log4j.Logger;
 import org.junit.Before;

Reply via email to