Fixed issue of the configuration verification test failing

This commit is contained in:
kdeng00
2020-02-15 17:37:51 -05:00
parent 437a6b1453
commit a1edbeb164
+1 -1
View File
@@ -22,7 +22,7 @@ namespace verify {
auto database = confirmConfigDatabase(bConf);
auto path = confirmConfigPaths(bConf);
if ((auth && database && path) == false) {
if ((!auth) && (!database) && (!path)) {
failedConfirmation();
}