Change path from nodeinfo to metadata->features

This commit is contained in:
Ekaterina Vaartis 2019-09-18 18:09:57 +03:00
commit a1325d5fd9
2 changed files with 3 additions and 3 deletions

View file

@ -55,10 +55,10 @@ defmodule Pleroma.Web.PleromaAPI.EmojiAPIControllerTest do
mock(fn
%{method: :get, url: "https://old-instance/nodeinfo/2.1.json"} ->
json(%{features: []})
json(%{metadata: %{features: []}})
%{method: :get, url: "https://example.com/nodeinfo/2.1.json"} ->
json(%{features: ["shareable_emoji_packs"]})
json(%{metadata: %{features: ["shareable_emoji_packs"]}})
%{
method: :get,