Skip to content

Commit

Permalink
Try to clarify where the "folded blocks" are (ros#17666)
Browse files Browse the repository at this point in the history
* say explicitely that the folded blocks can be found in the travis log

* simply say the blocks can be found 'above'
  • Loading branch information
mikaelarguedas committed Apr 28, 2018
1 parent 1ec4e0f commit f9a11e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fold_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_message(self, msg=''):
if os.environ.get('TRAVIS') == 'true':
if msg:
msg += ', '
msg += "see folded block '%s' for details" % self.get_block_name()
msg += "see folded block '%s' above for details" % self.get_block_name()
return msg

def get_block_name(self):
Expand Down
2 changes: 1 addition & 1 deletion test/rosdistro_check_urls_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ def test_rosdistro_urls():
if not check_rosdistro_urls(index_url, distro_name):
failed_distros.append(distro_name)
fold_blocks.append(fold.get_block_name())
assert not failed_distros, "There were problems with urls in the distribution files for these distros: %s, see folded blocks for details: %s" % (failed_distros, fold_blocks)
assert not failed_distros, "There were problems with urls in the distribution files for these distros: %s, see folded blocks above for details: %s" % (failed_distros, fold_blocks)

0 comments on commit f9a11e2

Please sign in to comment.