[TESTS] Fix Core/ControllerTest

This commit is contained in:
2022-03-07 14:08:07 +00:00
parent 813e66e83e
commit 487791d606
7 changed files with 49 additions and 30 deletions

View File

@@ -1,11 +1,11 @@
{% import "/cards/macros/note/factory.html.twig" as NoteFactory %}
{# Backwards compatibility with hAtom 0.1 #}
{% if pinnednotes is not empty %}
{% if pinned_notes is not empty %}
<main class="feed pinned" tabindex="0" role="feed">
<h1>Pinned Notes</h1>
<div class="h-feed hfeed notes">
{% for conversation in pinnednotes %}
{% for conversation in pinned_notes %}
{% block current_note %}
{% if conversation is instanceof('array') %}
{% set args = conversation | merge({ 'type': 'vanilla_full', 'extra': { 'depth': 0 }}) %}