1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2025-04-13 04:15:43 +02:00

Fix the exclude list test.

This commit is contained in:
Andreas Schneider 2008-06-13 09:39:17 +02:00
parent 1608edb5cb
commit afa3bd7b80

View File

@ -37,7 +37,7 @@ END_TEST
START_TEST (check_csync_exclude_load)
{
fail_unless(csync_exclude_load(csync, BINARYDIR "/config/" CSYNC_EXCLUDE_FILE) == 0, NULL);
fail_unless(strcmp(csync->excludes->vector[0], (const char *) ".ccache/*") == 0, NULL);
fail_unless(strcmp(csync->excludes->vector[0], (const char *) ".beagle/*") == 0, NULL);
}
END_TEST