Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Hall committed Sep 4, 2017
1 parent 4f241c6 commit b96d222
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extras/boost_test/include/rapidcheck/boost_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ void checkBoostTest(Testable &&testable) {

const auto result = checkTestable(std::forward<Testable>(testable), metadata);

//Without this boost.test will complain about the test case having no assertions when the
//rapidcheck test passes
// Without this boost.test will complain about the test case having no assertions when the
// rapidcheck test passes
BOOST_CHECK (true);

if (result.template is<SuccessResult>()) {
Expand All @@ -43,7 +43,7 @@ void checkBoostTest(Testable &&testable) {
void rapidCheck_propImpl_##Name ArgList; \
\
BOOST_AUTO_TEST_CASE(Name) { \
::rc::detail::checkBoostTest(&rapidCheck_propImpl_##Name); \
::rc::detail::checkBoostTest(&rapidCheck_propImpl_##Name); \
} \
\
void rapidCheck_propImpl_##Name ArgList
Expand All @@ -59,7 +59,7 @@ void checkBoostTest(Testable &&testable) {
}; \
\
BOOST_AUTO_TEST_CASE(Name) { \
::rc::detail::checkBoostTest( \
::rc::detail::checkBoostTest( \
&rc::detail::ExecFixture< \
RapidCheckPropImpl_##Fixture##_##Name>::exec); \
} \
Expand Down

0 comments on commit b96d222

Please sign in to comment.