From 52ef6120091102fe6b9f0da396ae25bd38c1935d Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 27 Jan 2016 10:43:57 +0300 Subject: [PATCH] Fixing routing tests. --- routing/routing_tests/routing_mapping_test.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/routing/routing_tests/routing_mapping_test.cpp b/routing/routing_tests/routing_mapping_test.cpp index 2becb2fb08..e8a5514132 100644 --- a/routing/routing_tests/routing_mapping_test.cpp +++ b/routing/routing_tests/routing_mapping_test.cpp @@ -24,9 +24,12 @@ namespace class LocalFileGenerator { public: + // Note. m_localFile has version == 0. That means it is considered as a two components mwm file + // with routing and map sections. It has mwm extention. So, to get correct path + // MapOptions::Map is used as a parameter of CountryFile::GetNameWithExt() method. LocalFileGenerator(string const & fileName) : m_countryFile(fileName), - m_testDataFile(m_countryFile.GetNameWithExt(MapOptions::CarRouting), "routing"), + m_testDataFile(m_countryFile.GetNameWithExt(MapOptions::Map), "routing"), m_localFile(GetPlatform().WritableDir(), m_countryFile, 0 /* version */) { m_localFile.SyncWithDisk();