You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2003/01/17 00:35:12 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly suite.jelly

dion        2003/01/16 15:35:12

  Modified:    jelly/src/test/org/apache/commons/jelly suite.jelly
  Log:
  remove log tag usage
  
  Revision  Changes    Path
  1.14      +4 -5      jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/suite.jelly
  
  Index: suite.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/suite.jelly,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- suite.jelly	15 Jan 2003 12:23:45 -0000	1.13
  +++ suite.jelly	16 Jan 2003 23:35:11 -0000	1.14
  @@ -1,8 +1,7 @@
   <?xml version="1.0"?>
   <test:suite 
   	xmlns:j="jelly:core" 
  -	xmlns:test="jelly:junit" 
  -	xmlns:log="jelly:log">
  +	xmlns:test="jelly:junit">
   
     <test:case name="testSetAndRemove">
   	
  @@ -101,7 +100,7 @@
   		<j:new className="org.apache.commons.jelly.core.Customer" var="customer"/>
   		<j:setProperties object="${customer}" name="James" city="London" />
   
  -		<log:info>Created a new bean: ${customer}</log:info>
  +		Created a new bean: ${customer}
   			
   		<test:assert test="${customer != null}">Created a customer bean</test:assert>
   		
  @@ -121,7 +120,7 @@
   	<test:case name="testUseBean">
   		<j:useBean var="customer" class="org.apache.commons.jelly.core.Customer" name="James" city="London" />
   
  -		<log:info>Created a new bean: ${customer}</log:info>
  +		Created a new bean: ${customer}
   			
   		<test:assert test="${customer != null}">Created a customer bean</test:assert>
   		
  @@ -145,7 +144,7 @@
   			<j:setProperties name="Bob" city="Atlanta"/>
   		</j:useBean>			
   										
  -		<log:info>Created a new bean: ${customer}</log:info>
  +		Created a new bean: ${customer}
   			
   		<test:assert test="${customer != null}">Created a customer bean</test:assert>
   		
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>