diff options
Diffstat (limited to 'util/generic/algorithm_ut.cpp')
| -rw-r--r-- | util/generic/algorithm_ut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/algorithm_ut.cpp b/util/generic/algorithm_ut.cpp index 8d732fcc0cf..d89116638d7 100644 --- a/util/generic/algorithm_ut.cpp +++ b/util/generic/algorithm_ut.cpp @@ -842,9 +842,9 @@ Y_UNIT_TEST_SUITE(TAlgorithm) { UNIT_ASSERT(Find(v, 1) == v.begin()); UNIT_ASSERT(Find(v, 100) == v.end() - 1); } - - Y_UNIT_TEST(AccumulateWithBinOp) { - std::vector<int> v = {1, 2, 777}; + + Y_UNIT_TEST(AccumulateWithBinOp) { + std::vector<int> v = {1, 2, 777}; UNIT_ASSERT_VALUES_EQUAL(TString("begin;1;2;777"), Accumulate(v, TString("begin"), [](auto&& a, auto& b) { return a + ";" + ToString(b); })); - } + } }; |
