You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by sb...@apache.org on 2012/07/24 03:32:29 UTC

[6/20] git commit: fixed tests

fixed tests


Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/915c73da
Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/915c73da
Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/915c73da

Branch: refs/heads/master
Commit: 915c73da33b5501ddb78747be03a980a5e4ad402
Parents: 93ffd31
Author: Shane Bryzak <sb...@gmail.com>
Authored: Tue Jun 19 19:30:06 2012 +1000
Committer: Shane Bryzak <sb...@gmail.com>
Committed: Tue Jul 24 10:11:19 2012 +1000

----------------------------------------------------------------------
 .../impl/src/main/resources/META-INF/beans.xml     |    2 +-
 .../apache/deltaspike/test/util/ArchiveUtils.java  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/915c73da/deltaspike/modules/security/impl/src/main/resources/META-INF/beans.xml
----------------------------------------------------------------------
diff --git a/deltaspike/modules/security/impl/src/main/resources/META-INF/beans.xml b/deltaspike/modules/security/impl/src/main/resources/META-INF/beans.xml
index 65b3b51..448e1f3 100644
--- a/deltaspike/modules/security/impl/src/main/resources/META-INF/beans.xml
+++ b/deltaspike/modules/security/impl/src/main/resources/META-INF/beans.xml
@@ -21,6 +21,6 @@
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
     <interceptors>
-        <class>org.apache.deltaspike.security.impl.authorization.SecurityInterceptor</class>
+        <class>org.apache.deltaspike.security.impl.extension.SecurityInterceptor</class>
     </interceptors>
 </beans>

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/915c73da/deltaspike/modules/security/impl/src/test/java/org/apache/deltaspike/test/util/ArchiveUtils.java
----------------------------------------------------------------------
diff --git a/deltaspike/modules/security/impl/src/test/java/org/apache/deltaspike/test/util/ArchiveUtils.java b/deltaspike/modules/security/impl/src/test/java/org/apache/deltaspike/test/util/ArchiveUtils.java
index f9c6905..f97dcef 100644
--- a/deltaspike/modules/security/impl/src/test/java/org/apache/deltaspike/test/util/ArchiveUtils.java
+++ b/deltaspike/modules/security/impl/src/test/java/org/apache/deltaspike/test/util/ArchiveUtils.java
@@ -58,7 +58,7 @@ public class ArchiveUtils
         Asset beansXml = new StringAsset(
             "<beans>" +
                 "<interceptors>" +
-                    "<class>org.apache.deltaspike.security.impl.authorization.SecurityInterceptor</class>" +
+                    "<class>org.apache.deltaspike.security.impl.extension.SecurityInterceptor</class>" +
                 "</interceptors>" +
             "</beans>"
         );