[jboss-cvs] JBossAS SVN: r104181 - trunk/testsuite/src/main/org/jboss/test/osgi/simple.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 22 16:46:05 EDT 2010


Author: ALRubinger
Date: 2010-04-22 16:46:04 -0400 (Thu, 22 Apr 2010)
New Revision: 104181

Modified:
   trunk/testsuite/src/main/org/jboss/test/osgi/simple/SimpleRuntimeTestCase.java
Log:
[JBAS-7963] Missed the testsuite commit

Modified: trunk/testsuite/src/main/org/jboss/test/osgi/simple/SimpleRuntimeTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/osgi/simple/SimpleRuntimeTestCase.java	2010-04-22 20:24:51 UTC (rev 104180)
+++ trunk/testsuite/src/main/org/jboss/test/osgi/simple/SimpleRuntimeTestCase.java	2010-04-22 20:46:04 UTC (rev 104181)
@@ -29,7 +29,7 @@
 import org.jboss.osgi.testing.OSGiManifestBuilder;
 import org.jboss.osgi.testing.OSGiRuntime;
 import org.jboss.osgi.testing.OSGiRuntimeTest;
-import org.jboss.shrinkwrap.api.Archives;
+import org.jboss.shrinkwrap.api.ShrinkWrap;
 import org.jboss.shrinkwrap.api.Asset;
 import org.jboss.shrinkwrap.api.spec.JavaArchive;
 import org.junit.Test;
@@ -47,7 +47,7 @@
    public void testSimpleBundle() throws Exception
    {
       // Build the bundle with shrinkwrap
-      final JavaArchive archive = Archives.create("example-simple", JavaArchive.class);
+      final JavaArchive archive = ShrinkWrap.create("example-simple", JavaArchive.class);
       archive.setManifest(new Asset()
       {
          public InputStream openStream()
@@ -81,4 +81,4 @@
          runtime.shutdown();
       }
    }
-}
\ No newline at end of file
+}




More information about the jboss-cvs-commits mailing list