You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by st...@apache.org on 2018/05/22 14:28:08 UTC

svn commit: r1832032 - in /geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal: PoxyTest.java ProxyTest.java

Author: struberg
Date: Tue May 22 14:28:08 2018
New Revision: 1832032

URL: http://svn.apache.org/viewvc?rev=1832032&view=rev
Log:
fix spelling error

Added:
    geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/ProxyTest.java
      - copied, changed from r1832031, geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/PoxyTest.java
Removed:
    geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/PoxyTest.java

Copied: geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/ProxyTest.java (from r1832031, geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/PoxyTest.java)
URL: http://svn.apache.org/viewvc/geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/ProxyTest.java?p2=geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/ProxyTest.java&p1=geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/PoxyTest.java&r1=1832031&r2=1832032&rev=1832032&view=diff
==============================================================================
--- geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/PoxyTest.java (original)
+++ geronimo/components/config/trunk/impl/src/test/java/org/apache/geronimo/config/test/internal/ProxyTest.java Tue May 22 14:28:08 2018
@@ -22,7 +22,6 @@ import static org.testng.Assert.assertEq
 import java.util.Collection;
 
 import javax.inject.Inject;
-import javax.inject.Provider;
 
 import org.eclipse.microprofile.config.inject.ConfigProperty;
 import org.jboss.arquillian.container.test.api.Deployment;
@@ -31,10 +30,9 @@ import org.jboss.shrinkwrap.api.ShrinkWr
 import org.jboss.shrinkwrap.api.asset.EmptyAsset;
 import org.jboss.shrinkwrap.api.spec.JavaArchive;
 import org.jboss.shrinkwrap.api.spec.WebArchive;
-import org.testng.Assert;
 import org.testng.annotations.Test;
 
-public class PoxyTest extends Arquillian {
+public class ProxyTest extends Arquillian {
     private static final String LIST_KEY = SomeProxy.class.getName() + ".list";
     private static final String SOME_KEY = SomeProxy.class.getName() + ".key";
     private static final String SOME_OTHER_KEY = SomeProxy.class.getName() + ".key2";
@@ -46,7 +44,7 @@ public class PoxyTest extends Arquillian
         System.setProperty(SOME_OTHER_KEY, "123");
         JavaArchive testJar = ShrinkWrap
                 .create(JavaArchive.class, "PoxyTest.jar")
-                .addClasses(PoxyTest.class, SomeProxy.class)
+                .addClasses(ProxyTest.class, SomeProxy.class)
                 .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
 
         return ShrinkWrap
@@ -77,7 +75,7 @@ public class PoxyTest extends Arquillian
         @ConfigProperty
         String key();
 
-        @ConfigProperty(name = "org.apache.geronimo.config.test.internal.PoxyTest$SomeProxy.key")
+        @ConfigProperty(name = "org.apache.geronimo.config.test.internal.ProxyTest$SomeProxy.key")
         String renamed();
 
         @ConfigProperty