Commit 96fc45f759193d92b924a2835de5ab2469fc1e49

Authored by Cleverson Sacramento
1 parent a14ff679
Exists in master

Remoção de classe desnecessária para o teste

impl/extension/servlet/src/test/java/security/authentication/form/ServletAuthenticatorTest.java
@@ -23,8 +23,6 @@ import org.junit.runner.RunWith; @@ -23,8 +23,6 @@ import org.junit.runner.RunWith;
23 23
24 import test.Tests; 24 import test.Tests;
25 25
26 -import com.sun.enterprise.security.auth.login.FileLoginModule;  
27 -  
28 @RunWith(Arquillian.class) 26 @RunWith(Arquillian.class)
29 public class ServletAuthenticatorTest { 27 public class ServletAuthenticatorTest {
30 28
@@ -35,7 +33,7 @@ public class ServletAuthenticatorTest { @@ -35,7 +33,7 @@ public class ServletAuthenticatorTest {
35 33
36 @Deployment(testable = false) 34 @Deployment(testable = false)
37 public static WebArchive createDeployment() { 35 public static WebArchive createDeployment() {
38 - return Tests.createDeployment().addClasses(HelperServlet.class, FileLoginModule.class) 36 + return Tests.createDeployment().addClasses(HelperServlet.class)
39 .addAsWebInfResource(Tests.createFileAsset(PATH + "/web.xml"), "web.xml"); 37 .addAsWebInfResource(Tests.createFileAsset(PATH + "/web.xml"), "web.xml");
40 } 38 }
41 39