Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
heplesser committed Sep 14, 2023
1 parent caaa7ef commit ddd6069
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/cpptests/test_target_fields.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ BOOST_AUTO_TEST_CASE( test_target_object_type_constructor )
for ( int i = 0; i < NUM_TEST_TRIALS; ++i )
{
// tid and rank can take on all values up to MAX_{TID,RANK}
// syn_id and lcid can only take values up to MAX_{SYN_ID,LCID}-1
// syn_id and lcid can only take values up to MAX_{SYN_ID,LCID}-1
const size_t tid = std::rand() % ( MAX_TID + 1 );
const size_t rank = std::rand() % ( MAX_RANK + 1 );
const synindex syn_id = std::rand() % MAX_SYN_ID;
Expand All @@ -81,7 +81,7 @@ BOOST_AUTO_TEST_CASE( test_target_object_type_set_get )
for ( int i = 0; i < NUM_TEST_TRIALS; ++i )
{
// tid and rank can take on all values up to MAX_{TID,RANK}
// syn_id and lcid can only take values up to MAX_{SYN_ID,LCID}-1
// syn_id and lcid can only take values up to MAX_{SYN_ID,LCID}-1
const size_t tid = std::rand() % ( MAX_TID + 1 );
const size_t rank = std::rand() % ( MAX_RANK + 1 );
const synindex syn_id = std::rand() % MAX_SYN_ID;
Expand Down

0 comments on commit ddd6069

Please sign in to comment.