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 82d30c7 commit cf420c9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,7 +27,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 @@ -43,7 +42,8 @@ public class DeclaringTypeTest
@Deployment
public static Archive<?> deploy()
{
return ShrinkWrap.create("test.jar", BeanArchive.class).addPackage(DeclaringTypeTest.class.getPackage()).as(JavaArchive.class);
return ShrinkWrap.create("test.jar", BeanArchive.class)
.addPackage(DeclaringTypeTest.class.getPackage());
}

@Inject
Expand Down

0 comments on commit cf420c9

Please sign in to comment.