mirror of https://gitee.com/bigwinds/arangodb
if there is no testcase, we still 'splitted' the bucket (#9425)
This commit is contained in:
parent
a793a4749f
commit
c2b645062b
|
@ -528,7 +528,11 @@ function filterTestcaseByOptions (testname, options, whichFilter) {
|
|||
// //////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function splitBuckets (options, cases) {
|
||||
if (!options.testBuckets || cases.length === 0) {
|
||||
if (!options.testBuckets) {
|
||||
return cases;
|
||||
}
|
||||
if (cases.length === 0) {
|
||||
didSplitBuckets = true;
|
||||
return cases;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue