Closed jvinis closed 5 days ago
@jvinis Thank you for raising this. I believe you are referring to the test for datetime_008. The comments in the DMN and TCK files are out of synch with the expected value in the TCK file. We need a PR to change the comments. Would you be able to do that?
The problem is at the comments (0068-feel-equality.dmn) and at the expected value (0068-feel-equality-test-01.xml). The test expect false instead of true.
`
<resultNode name="datetime_008" type="decision">
<expected>
<value xsi:type="xsd:boolean">false</value>
</expected>
</resultNode>
</testCase>`
@jvinis Yes, you are right, the boolean value specified in the comments (both DMN and TCK file) do not match the expected value (true in comments and false in expected value tag).
However, the test is correct (actual and expected values are the same). The offset of Europe/Paris between the summer transition (end of March) and autumn transition (end of October) is +02:00 not +01:00.
I can think of two options:
change the comments or change the test to reflect the intention stated in the TCK file by using the +02:00 offset.
I created a PR here https://github.com/dmn-tck/tck/pull/683 to address the issue.
PR merged. Thanks for the issue and for the fix.
The description declares "...expects result: 'true (boolean)'", but the allowed answer is false!false (boolean)