8000 Backport of fix from 3.12.6. · arangodb/arangodb@96d50db · GitHub
[go: up one dir, main page]

Skip to content

Commit 96d50db

Browse files
committed
Backport of fix from 3.12.6.
1 parent 46e2b30 commit 96d50db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/js/server/aql/aql-functions.js

Lines changed: 3 additions & 3 deletions
< 8D5E td data-grid-cell-id="diff-f6c2bd737bf8ace112e5db98af1ee40d9e8244eb17d5c41e7448ff77dfc60748-2335-2335-1" data-selected="false" role="gridcell" style="background-color:var(--bgColor-default);text-align:center" tabindex="-1" valign="top" class="focusable-grid-cell diff-line-number position-relative diff-line-number-neutral left-side">2335
Original file line numberDiff line numberDiff line change
@@ -2328,8 +2328,8 @@ function ahuacatlFunctionsTestSuite () {
23282328

23292329
testPercentile : function () {
23302330
var data = [
2331-
[ null, [ 1, 2, 3, 4, 5 ], 0, "rank" ],
2332-
[ null, [ 15, 20, 35, 40, 50 ], 0, "rank" ],
2331+
[ 1, [ 1, 2, 3, 4, 5 ], 0, "rank" ],
2332+
[ 15, [ 15, 20, 35, 40, 50 ], 0, "rank" ],
23332333
[ 50, [ 50, 40, 35, 20, 15 ], 100, "rank" ],
23342334
[ 50, [ 15, 20, 35, 40, 50 ], 100, "rank" ],
2335
[ 20, [ 15, 20, 35, 40, 50 ], 30, "rank" ],
@@ -2342,7 +2342,7 @@ function ahuacatlFunctionsTestSuite () {
23422342
[ 7.25, [ 1, 3, 3, 4, 5, 6, 6, 7, 8, 8 ], 75, "interpolation" ],
23432343
[ 84, [ 50, 65, 70, 72, 72, 78, 80, 82, 84, 84, 85, 86, 88, 88, 90, 94, 96, 98, 98, 99 ], 45, "rank" ],
23442344
[ 86, [ 50, 65, 70, 72, 72, 78, 80, 82, 84, 84, 85, 86, 88, 88, 90, 94, 96, 98, 98, 99 ], 58, "rank" ],
2345-
[ null, [ 3, 5, 7, 8, 9, 11, 13, 15 ], 0, "interpolation" ],
2345+
[ 3, [ 3, 5, 7, 8, 9, 11, 13, 15 ], 0, "interpolation" ],
23462346
[ 5.5, [ 3, 5, 7, 8, 9, 11, 13, 15 ], 25, "interpolation" ],
23472347
[ 5.5, [ null, 3, 5, null, 7, 8, 9, 11, 13, 15, null ], 25, "interpolation" ],
23482348
[ 5, [ 4, 4, 5, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 9, 9, 9, 10, 10, 10 ], 25, "interpolation" ],

0 commit comments

Comments
 (0)
0