Author: maschmid
Date: 2012-07-03 06:33:05 -0400 (Tue, 03 Jul 2012)
New Revision: 14975

Modified:
   
branches/community/Seam_2_3/seam-integration-tests/src/test/java/org/jboss/seam/test/integration/FactoryLockTest.java
Log:
FactoryLockTest update


Modified: 
branches/community/Seam_2_3/seam-integration-tests/src/test/java/org/jboss/seam/test/integration/FactoryLockTest.java
===================================================================
--- 
branches/community/Seam_2_3/seam-integration-tests/src/test/java/org/jboss/seam/test/integration/FactoryLockTest.java
       2012-07-03 10:30:48 UTC (rev 14974)
+++ 
branches/community/Seam_2_3/seam-integration-tests/src/test/java/org/jboss/seam/test/integration/FactoryLockTest.java
       2012-07-03 10:33:05 UTC (rev 14975)
@@ -175,7 +175,7 @@
          return (String)Component.getInstance("factoryLock.testString", true);
       }
       
-      @Factory(value="factoryLock.testString", scope=ScopeType.EVENT)
+      @Factory(value="factoryLock.testString", scope=ScopeType.SESSION)
       public String getTestString() {
          return "testString";
       }
@@ -185,7 +185,7 @@
    
    @Name("factoryLock.testProducer")
    public static class TestProducer {
-      @Factory(value="factoryLock.foo", scope=ScopeType.EVENT)
+      @Factory(value="factoryLock.foo", scope=ScopeType.SESSION)
       public String getFoo() {
          return "foo";
       }

_______________________________________________
seam-commits mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-commits

Reply via email to