From 9956de52ea6b3a17759804c1435782141e32bead Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Mon, 3 Jan 2011 18:26:17 +0100 Subject: [PATCH] Remove temporary file in FileContainer_Smoke test. --- coding/coding_tests/file_container_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coding/coding_tests/file_container_test.cpp b/coding/coding_tests/file_container_test.cpp index 4662b91fc4..4e340c55b2 100644 --- a/coding/coding_tests/file_container_test.cpp +++ b/coding/coding_tests/file_container_test.cpp @@ -9,6 +9,7 @@ UNIT_TEST(FileContainer_Smoke) { string const fName = "file_container.tmp"; + FileWriter::DeleteFile(fName); size_t const count = 10; // fill container one by one @@ -67,4 +68,5 @@ UNIT_TEST(FileContainer_Smoke) CHECK_EQUAL(arrAppend[i], test, ()); } } + FileWriter::DeleteFile(fName); }