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
path: root/base
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-05-27 18:05:55 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-05-27 18:10:01 +0300
commit8f7da1501a7382a7ee16641fc459ee4354f43d37 (patch)
tree5ff985b5cbf7e51b6c46d52ffb7ed5e9cdc75ffb /base
parentde449b38b67dddd6308c6b1875e6818e08851b1a (diff)
[bicycle routing] Simplifying IRoadGraph::ForEachEdge().
Diffstat (limited to 'base')
-rw-r--r--base/base_tests/stl_helpers_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/base_tests/stl_helpers_test.cpp b/base/base_tests/stl_helpers_test.cpp
index f42e8ac4df..af47c7e5fb 100644
--- a/base/base_tests/stl_helpers_test.cpp
+++ b/base/base_tests/stl_helpers_test.cpp
@@ -78,10 +78,10 @@ UNIT_TEST(EqualsBy)
UNIT_TEST(SortUnique)
{
{
- vector<int> v = {1, 2, 1, 4, 3, 5, 2, 7, 1};
- my::SortUnique(v);
+ vector<int> actual = {1, 2, 1, 4, 3, 5, 2, 7, 1};
+ my::SortUnique(actual);
vector<int> const expected = {1, 2, 3, 4, 5, 7};
- TEST_EQUAL(v, expected, ());
+ TEST_EQUAL(actual, expected, ());
}
{
using TValue = int;