fixing provider and their tests

This commit is contained in:
Christian Kellner
2020-02-16 13:09:15 +01:00
parent 9106144d9c
commit e676812688
8 changed files with 25 additions and 20 deletions

View File

@@ -43,7 +43,9 @@ class Fredy {
x((err, listings) => {
if (err) reject(err);
else resolve(listings)
else {
resolve(listings);
}
})
})
}