Revision: 680
          http://stripes.svn.sourceforge.net/stripes/?rev=680&view=rev
Author:   bengunter
Date:     2007-12-12 07:49:44 -0800 (Wed, 12 Dec 2007)

Log Message:
-----------
As Aaron pointed out, I was passing the wrong class to getFormatter for 
testNullFormatterisNeverBestMatch

Modified Paths:
--------------
    
trunk/tests/src/net/sourceforge/stripes/format/DefaultFormatterFactoryTest.java

Modified: 
trunk/tests/src/net/sourceforge/stripes/format/DefaultFormatterFactoryTest.java
===================================================================
--- 
trunk/tests/src/net/sourceforge/stripes/format/DefaultFormatterFactoryTest.java 
    2007-12-12 15:25:20 UTC (rev 679)
+++ 
trunk/tests/src/net/sourceforge/stripes/format/DefaultFormatterFactoryTest.java 
    2007-12-12 15:49:44 UTC (rev 680)
@@ -106,7 +106,7 @@
 
         // then register formatter for A and try to get formatter for C
         factory.add(A.class, AFormatter.class);
-        formatter = factory.getFormatter(A.class, locale, null, null);
+        formatter = factory.getFormatter(C.class, locale, null, null);
         Assert.assertEquals(AFormatter.class, formatter.getClass());
     }
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to