Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2016-05-27 19:40:55 +0300
committerMaxim Pimenov <m@maps.me>2016-05-31 14:54:46 +0300
commitf672cb0b8227ddafcd6b271724dda3e05df9bfef (patch)
tree423ac795cf5da4a96136416827e943040f19a1b5 /search/search_integration_tests/processor_test.cpp
parent59f40d7669598a229ffa4f6269e17234f9af9506 (diff)
[search] Got rid of the v2 directory and namespace.
Diffstat (limited to 'search/search_integration_tests/processor_test.cpp')
-rw-r--r--search/search_integration_tests/processor_test.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/search/search_integration_tests/processor_test.cpp b/search/search_integration_tests/processor_test.cpp
index 4d81c982d9..6676b73a89 100644
--- a/search/search_integration_tests/processor_test.cpp
+++ b/search/search_integration_tests/processor_test.cpp
@@ -4,7 +4,7 @@
#include "search/search_integration_tests/helpers.hpp"
#include "search/search_tests_support/test_results_matching.hpp"
#include "search/search_tests_support/test_search_request.hpp"
-#include "search/v2/token_slice.hpp"
+#include "search/token_slice.hpp"
#include "generator/generator_tests_support/test_feature.hpp"
#include "generator/generator_tests_support/test_mwm_builder.hpp"
@@ -22,7 +22,6 @@
using namespace generator::tests_support;
using namespace search::tests_support;
-using namespace search::v2;
using TRules = vector<shared_ptr<MatchingRule>>;
@@ -414,8 +413,8 @@ UNIT_CLASS_TEST(ProcessorTest, TestPostcodes)
params.m_tokens.emplace_back();
params.m_tokens.back().push_back(strings::MakeUniString("141702"));
auto * value = handle.GetValue<MwmValue>();
- auto features = v2::RetrievePostcodeFeatures(countryId, *value, cancellable,
- TokenSlice(params, 0, params.m_tokens.size()));
+ auto features = RetrievePostcodeFeatures(countryId, *value, cancellable,
+ TokenSlice(params, 0, params.m_tokens.size()));
TEST_EQUAL(1, features->PopCount(), ());
uint64_t index = 0;