From 814e5093acdf950100732aa04e435874ac3c76d5 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Mon, 6 Dec 2010 18:50:36 +0000 Subject: [PATCH] Delete temporary file after unit test --- indexer/indexer_tests/country_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indexer/indexer_tests/country_test.cpp b/indexer/indexer_tests/country_test.cpp index 88c6249cb3..1b67c2d008 100644 --- a/indexer/indexer_tests/country_test.cpp +++ b/indexer/indexer_tests/country_test.cpp @@ -35,4 +35,6 @@ UNIT_TEST(CountrySerialization) TEST_EQUAL(c.Name(), c2.Name(), ()); TEST_GREATER(c2.Urls().size(), 0, ()); TEST_EQUAL(*c.Urls().begin(), *c2.Urls().begin(), ()); + + FileWriter::DeleteFile(TEST_FILE_NAME); }