Author: jacopoc
Date: Sun Mar 23 06:40:50 2014
New Revision: 1580458

URL: http://svn.apache.org/r1580458
Log:
Applied fix from trunk for revision: 1580455 
===

Fixed a bug in a test case that was causing a test failure when a Daylight 
Saving Time change was scheduled within a week: the test was trying to accept a 
+/1 hour difference but since the unit of measure of time was milliseconds then 
it had to be +/-60*60*1000=+/-3600000 
Thanks to Christian Geisert for the fix.

Modified:
    ofbiz/branches/release11.04/   (props changed)
    
ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/test/ProductionRunTests.xml

Propchange: ofbiz/branches/release11.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1580455

Modified: 
ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/test/ProductionRunTests.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/test/ProductionRunTests.xml?rev=1580458&r1=1580457&r2=1580458&view=diff
==============================================================================
--- 
ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/test/ProductionRunTests.xml
 (original)
+++ 
ofbiz/branches/release11.04/applications/manufacturing/script/org/ofbiz/manufacturing/test/ProductionRunTests.xml
 Sun Mar 23 06:40:50 2014
@@ -273,9 +273,9 @@ under the License.
             <if-compare-field field="productionRunTask.estimatedStartDate" 
operator="equals" to-field="productionRunNewStartDate" type="Timestamp"/>
             <or>
                 <if-compare field="taskTimeDifference" operator="equals" 
value="0.0" type="Double"/>
-                <!-- a difference of +1 or -1 is accepted because it could be 
caused by DST change happening in one of the two time periods -->
-                <if-compare field="taskTimeDifference" operator="equals" 
value="1.0" type="Double"/>
-                <if-compare field="taskTimeDifference" operator="equals" 
value="-1.0" type="Double"/>
+                <!-- a difference of +1 or -1 hour is accepted because it 
could be caused by DST change happening in one of the two time periods -->
+                <if-compare field="taskTimeDifference" operator="equals" 
value="3600000.0" type="Double"/>
+                <if-compare field="taskTimeDifference" operator="equals" 
value="-3600000.0" type="Double"/>
             </or>
         </assert>
 


Reply via email to