Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to clarify where the "folded blocks" are #17666

Merged
merged 2 commits into from
Apr 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)