[weld-commits] Weld SVN: r5203 - core/trunk/tests/src/test/java/org/jboss/weld/tests/stereotypes.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Dec 3 10:10:59 EST 2009


Author: nickarls
Date: 2009-12-03 10:10:58 -0500 (Thu, 03 Dec 2009)
New Revision: 5203

Modified:
   core/trunk/tests/src/test/java/org/jboss/weld/tests/stereotypes/StereotypesTest.java
Log:
Oops, cross-project refactor uncommitted

Modified: core/trunk/tests/src/test/java/org/jboss/weld/tests/stereotypes/StereotypesTest.java
===================================================================
--- core/trunk/tests/src/test/java/org/jboss/weld/tests/stereotypes/StereotypesTest.java	2009-12-03 13:31:01 UTC (rev 5202)
+++ core/trunk/tests/src/test/java/org/jboss/weld/tests/stereotypes/StereotypesTest.java	2009-12-03 15:10:58 UTC (rev 5203)
@@ -22,7 +22,7 @@
       assert animalStereotype.getDefaultScopeType().annotationType().equals(RequestScoped.class);
       assert animalStereotype.getInterceptorBindings().size() == 0;
       assert !animalStereotype.isBeanNameDefaulted();
-      assert !animalStereotype.isPolicy();
+      assert !animalStereotype.isAlternative();
    }
    
    @Test
@@ -32,7 +32,7 @@
       assert animalStereotype.getDefaultScopeType() == null;
       assert animalStereotype.getInterceptorBindings().size() == 0;
       assert !animalStereotype.isBeanNameDefaulted();
-      assert !animalStereotype.isPolicy();
+      assert !animalStereotype.isAlternative();
    }
    
    @Test
@@ -42,7 +42,7 @@
       assert animalStereotype.getDefaultScopeType() == null;
       assert animalStereotype.getInterceptorBindings().size() == 0;
       assert !animalStereotype.isBeanNameDefaulted();
-      assert !animalStereotype.isPolicy();
+      assert !animalStereotype.isAlternative();
    }
       
 }



More information about the weld-commits mailing list