You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gp...@apache.org on 2011/04/11 12:02:25 UTC

svn commit: r1091001 - /myfaces/extensions/cdi/trunk/test-modules/base-test-infrastructure-module/src/main/java/org/apache/myfaces/extensions/cdi/test/strategy/AbstractServletAwareTestStrategy.java

Author: gpetracek
Date: Mon Apr 11 10:02:24 2011
New Revision: 1091001

URL: http://svn.apache.org/viewvc?rev=1091001&view=rev
Log:
EXTCDI-157 cleanup

Modified:
    myfaces/extensions/cdi/trunk/test-modules/base-test-infrastructure-module/src/main/java/org/apache/myfaces/extensions/cdi/test/strategy/AbstractServletAwareTestStrategy.java

Modified: myfaces/extensions/cdi/trunk/test-modules/base-test-infrastructure-module/src/main/java/org/apache/myfaces/extensions/cdi/test/strategy/AbstractServletAwareTestStrategy.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/cdi/trunk/test-modules/base-test-infrastructure-module/src/main/java/org/apache/myfaces/extensions/cdi/test/strategy/AbstractServletAwareTestStrategy.java?rev=1091001&r1=1091000&r2=1091001&view=diff
==============================================================================
--- myfaces/extensions/cdi/trunk/test-modules/base-test-infrastructure-module/src/main/java/org/apache/myfaces/extensions/cdi/test/strategy/AbstractServletAwareTestStrategy.java (original)
+++ myfaces/extensions/cdi/trunk/test-modules/base-test-infrastructure-module/src/main/java/org/apache/myfaces/extensions/cdi/test/strategy/AbstractServletAwareTestStrategy.java Mon Apr 11 10:02:24 2011
@@ -86,8 +86,8 @@ public abstract class AbstractServletAwa
     //@After
     public void after()
     {
-        ((ServletContainerAwareCdiTestContainer)this.testContainer).stopRequest();
         ((ServletContainerAwareCdiTestContainer)this.testContainer).stopSession();
+        ((ServletContainerAwareCdiTestContainer)this.testContainer).stopRequest();
         this.testContainer.stopContexts();
         this.testContainer.stopContainer();
     }