You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exist-core/src/test/xquery/pathExpression_operators.xml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,10 @@
45
45
<task>union operator: should select context node (not its child nodes)</task>
46
46
<code><![CDATA[
47
47
let $a := collection('/db/coll')/test
48
-
return $a/(.|..)
48
+
return
49
+
<result>{$a/(.|..)}</result>
49
50
]]></code>
50
-
<expected><test>this is text with an <el>embedded element</el></test></expected>
51
+
<expected><result><test>this is text with an <el>embedded element</el></test><test>this is text with an <el>embedded element</el></test></result></expected>
51
52
</test>
52
53
<testoutput="xml"ignore="yes">
53
54
<task>comma operator: should remove duplicates (due to '/' operator)</task>
0 commit comments