tests: fixed feed test

This commit is contained in:
RhodeCode Admin 2025-12-30 10:29:30 +01:00
parent 273165dc92
commit 811e15c884

View file

@ -4,9 +4,9 @@ ${_('%(user)s committed on %(date)s UTC') % {
'date': h.format_date(commit.date)
}}
<br/>
% if commit.branch:
branch: ${commit.branch} <br/>
% endif
% for branch in commit.branches:
branch: ${branch} <br/>
% endfor
% for bookmark in getattr(commit, 'bookmarks', []):
bookmark: ${bookmark} <br/>