Skip to content

Commit

Permalink
[oneDPL][ranges][zip_view][test] + ;
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDvorskiy committed Oct 30, 2024
1 parent 7e05588 commit 373ade4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel_api/ranges/std_ranges_zip_view.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void test_zip_view_base_op()
EXPECT_TRUE((bool)zip_view, "zip_view::operator bool() method returns a wrong result.");

EXPECT_TRUE(zip_view[0] == zip_view.front(), "zip_view::front method returns a wrong result.");
EXPECT_TRUE(zip_view[zip_view.size() - 1] == zip_view.back(), "zip_view::back method returns a wrong result.")
EXPECT_TRUE(zip_view[zip_view.size() - 1] == zip_view.back(), "zip_view::back method returns a wrong result.");

using zip_view_t = dpl_ranges::zip_view<std::ranges::iota_view<int>>;
auto zip_view_0 = zip_view_t();
Expand Down

0 comments on commit 373ade4

Please sign in to comment.