Skip to content

Commit f4e8fc7

Browse files
committed
[ignore] further code cleanup in xqsuite.xql
1 parent 21dbbc6 commit f4e8fc7

File tree

1 file changed

+5
-2
lines changed
  • exist-core/src/main/resources/org/exist/xquery/lib/xqsuite

1 file changed

+5
-2
lines changed

exist-core/src/main/resources/org/exist/xquery/lib/xqsuite/xqsuite.xql

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,10 @@ declare %private function test:run-tests(
264264
}</report>
265265
)
266266
else
267-
let $argsAnnot := $meta/annotation[matches(@name, ":args?")][not(preceding-sibling::annotation[1][matches(@name, ":args?")])]
267+
let $argsAnnot :=
268+
$meta/annotation[matches(@name, ":args?")]
269+
[not(preceding-sibling::annotation[1][matches(@name, ":args?")])]
270+
268271
let $test := test:test($func, $meta, ?,
269272
$test-started-function, $test-failure-function, $test-error-function, $test-finished-function)
270273
return
@@ -280,7 +283,7 @@ declare %private function test:run-tests(
280283
: @param $meta the function description
281284
: @param $test-assumption-failed-function A callback for reporting the failure of assumptions
282285
:
283-
: @return Any assumption annotations where the asusmption did not hold true
286+
: @return Any assumption annotations where the assumption did not hold true
284287
:)
285288
declare
286289
%private

0 commit comments

Comments
 (0)