You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sa...@apache.org on 2019/04/13 00:22:21 UTC

[geode-examples] branch develop updated: GEODE-6648: use org.junit.Assert.assertEquals

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 251d35e  GEODE-6648: use org.junit.Assert.assertEquals
251d35e is described below

commit 251d35e2759f76303df97d3585d09a758a5f0e01
Author: Sai Boorlagadda <sb...@pivotal.io>
AuthorDate: Fri Apr 12 17:21:15 2019 -0700

    GEODE-6648: use org.junit.Assert.assertEquals
    
      org.jgroups.util.Util.assertEquals was wrongly
      imported instead of org.junit.Assert.assertEquals
---
 .../src/test/java/org/apache/geode_examples/functions/ExampleTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/functions/src/test/java/org/apache/geode_examples/functions/ExampleTest.java b/functions/src/test/java/org/apache/geode_examples/functions/ExampleTest.java
index e34e0cf..f15619b 100644
--- a/functions/src/test/java/org/apache/geode_examples/functions/ExampleTest.java
+++ b/functions/src/test/java/org/apache/geode_examples/functions/ExampleTest.java
@@ -14,7 +14,7 @@
  */
 package org.apache.geode_examples.functions;
 
-import static org.jgroups.util.Util.assertEquals;
+import static org.junit.Assert.assertEquals;
 import static org.mockito.Mockito.mock;
 import static org.mockito.Mockito.when;