mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 09:30:13 +03:00
Fix delete in csync_config
This commit is contained in:
parent
ea14dc1a75
commit
1147e77d67
1 changed files with 4 additions and 1 deletions
|
@ -30,7 +30,10 @@ static void teardown(void **state) {
|
|||
rc = csync_destroy(csync);
|
||||
assert_int_equal(rc, 0);
|
||||
|
||||
rc = system("rm -rf /tmp/check_csync");
|
||||
rc = system("rm -rf /tmp/check_csync1");
|
||||
assert_int_equal(rc, 0);
|
||||
|
||||
rc = system("rm -rf /tmp/check_csync2");
|
||||
assert_int_equal(rc, 0);
|
||||
|
||||
*state = NULL;
|
||||
|
|
Loading…
Reference in a new issue