moved tests to new directory

This commit is contained in:
overflowerror 2019-03-13 16:57:59 +01:00
parent 52dbf646ec
commit 92f007345e
3 changed files with 2 additions and 2 deletions

View file

@ -241,9 +241,9 @@ void testConfig() {
FILE* file;
#ifdef SSL_SUPPORT
file = fopen("test-with-ssl.conf", "r");
file = fopen("tests/test-with-ssl.conf", "r");
#else
file = fopen("test.conf", "r");
file = fopen("tests/test.conf", "r");
#endif
struct config* config = config_parse(file);