Skip to content

Commit b1223a9

Browse files
Fix clang-format issues in test file
1 parent 118ce13 commit b1223a9

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

libs/core/algorithms/tests/unit/algorithms/is_sorted_projection.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,12 @@ void test_is_sorted_until_projection()
7474
hpx::execution::par, c.begin(), c.end(), std::less<int>{}, proj);
7575
HPX_TEST(it_par != c.end() && it_par->second == 5);
7676

77-
auto it_task = hpx::is_sorted_until(
78-
hpx::execution::par(hpx::execution::task), c.begin(), c.end(),
79-
std::less<int>{}, proj)
80-
.get();
77+
auto it_task =
78+
hpx::is_sorted_until(hpx::execution::par(hpx::execution::task),
79+
c.begin(), c.end(), std::less<int>{}, proj)
80+
.get();
8181
HPX_TEST(it_task != c.end() && it_task->second == 5);
8282

83-
8483
std::vector<element> fully_sorted = {{10, 1}, {20, 3}, {30, 5}};
8584
auto it_end = hpx::is_sorted_until(
8685
par, fully_sorted.begin(), fully_sorted.end(), std::less<int>{}, proj);

0 commit comments

Comments
 (0)