test: fix redis tests

This commit is contained in:
Barış Soner Uşaklı
2021-04-22 11:28:10 -04:00
parent 92de49be00
commit 4e490f6058

View File

@@ -98,9 +98,7 @@ module.exports = function (module) {
if (!Array.isArray(keys) || !keys.length) {
return [];
}
if (!Array.isArray(fields)) {
return keys.map(() => ({}));
}
const cachedData = {};
const unCachedKeys = cache.getUnCachedKeys(keys, cachedData);
@@ -118,7 +116,7 @@ module.exports = function (module) {
cache.set(key, cachedData[key]);
});
if (!fields.length) {
if (!Array.isArray(fields) || !fields.length) {
return keys.map(key => (cachedData[key] ? { ...cachedData[key] } : null));
}
return keys.map((key) => {