Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Jun 13, 2010
1 parent cf420c9 commit 2b87f75
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -30,7 +30,6 @@
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.BeanArchive;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand All @@ -47,8 +46,7 @@ public class ExampleTest
public static Archive<?> deploy()
{
return ShrinkWrap.create("test.jar", BeanArchive.class)
.addPackage(ExampleTest.class.getPackage())
.as(JavaArchive.class);
.addPackage(ExampleTest.class.getPackage());
}

@Inject
Expand Down

0 comments on commit 2b87f75

Please sign in to comment.