Skip to content

Commit

Permalink
try to fix metafunction tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alifahrri committed Dec 16, 2023
1 parent b388119 commit a117802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/nmtools/testing/testing.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ namespace subcase::expect
} else if constexpr (meta::is_fail_v<decltype(b_size_expect)>) { \
return is_same_kind; \
} else if constexpr (b_size_is_num) { \
return (b_size_result == b_size_expect); \
return meta::bounded_size_v<result_t> == meta::bounded_size_v<expect_t>; \
} else { \
return meta::is_same_v<result_t,expect_t>; \
} \
Expand Down

0 comments on commit a117802

Please sign in to comment.