Skip to content

Commit

Permalink
wa circle
Browse files Browse the repository at this point in the history
  • Loading branch information
alfC committed Feb 12, 2025
1 parent d9bbb7f commit 834c131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/array_ref.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ BOOST_AUTO_TEST_CASE(array_ref_test_no_ub) {
{
multi::array<int, 1> const arr = {1, 2, 3, 4, 5, 6};
multi::array_ref<int, 2, multi::array<int, 1>::const_iterator> const arr2({2, 3}, arr.begin());
BOOST_TEST(( arr2 == multi::array{
BOOST_TEST(( arr2 == multi::array<int, 2>{
{1, 2, 3},
{4, 5, 6}
}));
Expand Down

0 comments on commit 834c131

Please sign in to comment.