Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/cql/CqlIntervalOperatorsTest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
<output>null</output>
</test>
<test name="TestNullElement1">
<expression>null contains 5</expression>
<expression>null as Interval&lt;Integer&gt; contains 5</expression>
<output>false</output>
</test>
<test name="TestNullElement2">
Expand Down
8 changes: 4 additions & 4 deletions tests/cql/CqlListOperatorsTest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<output>false</output>
</test>
<test name="ContainsNullLeft">
<expression>null contains 'a'</expression>
<expression>null as List&lt;String&gt; contains 'a'</expression>
<output>false</output>
</test>
</group>
Expand Down Expand Up @@ -306,7 +306,7 @@
<output>true</output>
</test>
<test name="In1Null">
<expression>1 in null</expression>
<expression>1 in null as List&lt;Integer&gt;</expression>
<output>false</output>
</test>
<test name="In1And12">
Expand Down Expand Up @@ -372,7 +372,7 @@
<output>false</output>
</test>
<test name="IncludesNullLeft">
<expression>null includes {2}</expression>
<expression>null as List&lt;Integer&gt; includes {2}</expression>
<output>null</output>
</test>
<!-- this test is going to the ContainsEvaluator -->
Expand Down Expand Up @@ -424,7 +424,7 @@
<output>null</output>
</test>
<test name="IncludedInNullRight">
<expression>{'s', 'a', 'm'} included in null</expression>
<expression>{'s', 'a', 'm'} included in null as List&lt;String&gt;</expression>
<output>null</output>
</test>
</group>
Expand Down