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:
Diffstat (limited to 'indexer/indexer_tests/test_type.cpp')
-rw-r--r--indexer/indexer_tests/test_type.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/indexer/indexer_tests/test_type.cpp b/indexer/indexer_tests/test_type.cpp
index dfa6892ccf..eaa44d1639 100644
--- a/indexer/indexer_tests/test_type.cpp
+++ b/indexer/indexer_tests/test_type.cpp
@@ -37,19 +37,19 @@ namespace
UNIT_TEST(SetGetTypes)
{
- uint8_t v1[] = { 6, 30, 50, 0, 1 };
- check_values_array(v1, 5);
+ uint8_t v1[] = { 6, 30, 0, 1 };
check_values_array(v1, 4);
+ check_values_array(v1, 3);
- uint8_t v2[] = { 0, 0, 0, 0, 0 };
- check_values_array(v2, 5);
+ uint8_t v2[] = { 0, 0, 0, 0 };
check_values_array(v2, 4);
+ check_values_array(v2, 3);
- uint8_t v3[] = { 1, 1, 1, 1, 1 };
- check_values_array(v3, 5);
+ uint8_t v3[] = { 1, 1, 1, 1 };
check_values_array(v3, 4);
+ check_values_array(v3, 3);
- uint8_t v4[] = { 63, 63, 63, 63, 63 };
- check_values_array(v4, 5);
+ uint8_t v4[] = { 63, 63, 63, 63 };
check_values_array(v4, 4);
+ check_values_array(v4, 3);
}