From 5b17d4d473c4fb0a648b4d5cea98cb1bde2e2894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Tue, 2 Sep 2014 17:12:23 +0200 Subject: [PATCH] Delete temporary jpeg file while snapshot tester ending --- tester/call_tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/call_tester.c b/tester/call_tester.c index 78c38b58e..55286937b 100644 --- a/tester/call_tester.c +++ b/tester/call_tester.c @@ -2899,7 +2899,7 @@ static void video_call_snapshot(void) { linphone_call_take_video_snapshot(callInst, filename); wait_for_until(marie->lc, pauline->lc, &dummy, 1, 5000); CU_ASSERT_EQUAL(access(filename, F_OK), 0); -// remove(filename); + remove(filename); } ms_free(filename); linphone_core_manager_destroy(marie);