Skip to content

Commit ba723f7

Browse files
committed
Fix broken unit test for struct macros
1 parent b680701 commit ba723f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/detail/struct_macros.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ int main() {
6868
BOOST_HANA_RUNTIME_CHECK(args.empty());
6969
}{
7070
Vector args = {BOOST_HANA_PP_DROP_BACK(1, 2)};
71-
BOOST_HANA_RUNTIME_CHECK(args == Vector{2});
71+
BOOST_HANA_RUNTIME_CHECK(args == Vector{1});
7272
}{
7373
Vector args = {BOOST_HANA_PP_DROP_BACK(1, 2, 3)};
7474
BOOST_HANA_RUNTIME_CHECK(args == Vector{1, 2});

0 commit comments

Comments
 (0)