Hello,

To avoid 2 failures with TestEngineSubmissions.testSubmissionBean, I had to add Locale.get/setDefault calls:

   public void testSubmissionBean()
   throws Exception
   {
       Locale locale = Locale.getDefault();
       Locale.setDefault(Locale.ENGLISH);
[...]
       String result = response.getText();
       Locale.setDefault(locale);
assertEquals("the string,the stringbuffer,23154,893749,u,null,true,false,0,21,34878.34,25435.98,3434.76,6534.8,34347897,2335454,32,12,this is some html content,true,someimage.png,true,Sat 20 Aug 2005 09:44:00", result);
[...]

Regards

Pierre


_______________________________________________
Rife-users mailing list
[email protected]
http://lists.uwyn.com/mailman/listinfo/rife-users

Reply via email to