1
0
Fork 0

Fix recovery suite to succeed in case of no tests

This commit is contained in:
KVS85 2019-04-22 09:33:56 +02:00
parent 39fd27df06
commit 98ce26d092
1 changed files with 2 additions and 2 deletions

View File

@ -202,10 +202,10 @@ function recovery (options) {
print(RED + 'No testcase matched the filter.' + RESET);
return {
ALLTESTS: {
status: false,
status: true,
skipped: true
},
status: false
status: true
};
}