Fix the tests.

Due to the restructure directory layout, header files weren't found
anymore.

CConfigEntry was moved out of CConfig which had to be reflected in
ConfigTest.
This commit is contained in:
Wulf C. Krueger
2012-06-02 19:28:55 +02:00
parent 40641b40a4
commit 4f3094e6c7
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -6,9 +6,9 @@
* by the Free Software Foundation.
*/
#include "ZNCDebug.h"
#include "FileUtils.h"
#include "Config.h"
#include "znc/ZNCDebug.h"
#include "znc/FileUtils.h"
#include "znc/Config.h"
#include <cstdlib>
class CConfigTest {
@@ -113,7 +113,7 @@ public:
CConfig::SubConfigMapIterator it2 = conf.BeginSubConfigs();
while (it2 != conf.EndSubConfigs()) {
map<CString, CConfig::CConfigEntry>::const_iterator it3 = it2->second.begin();
map<CString, CConfigEntry>::const_iterator it3 = it2->second.begin();
while (it3 != it2->second.end()) {
sRes += "->" + it2->first + "/" + it3->first + "\n";