Another keyword.equal? check

This commit is contained in:
FloatingGhost 2023-08-06 16:36:18 +01:00
parent 215b550317
commit 7956cfb091
1 changed files with 4 additions and 4 deletions

View File

@ -26,16 +26,16 @@ defmodule Pleroma.Repo.Migrations.FixMalformedFormatterConfigTest do
%{value: new_opts} = ConfigDB.get_by_params(%{group: :pleroma, key: Pleroma.Formatter})
assert new_opts == [
assert Keyword.equal?(new_opts,
class: false,
extra: true,
new_window: false,
rel: "F",
strip_prefix: false
]
)
clear_config(Pleroma.Formatter, new_opts)
assert new_opts == Pleroma.Config.get(Pleroma.Formatter)
assert Keyword.equal?(new_opts, Pleroma.Config.get(Pleroma.Formatter))
{text, _mentions, []} =
Pleroma.Formatter.linkify(
@ -61,7 +61,7 @@ defmodule Pleroma.Repo.Migrations.FixMalformedFormatterConfigTest do
%{value: new_opts} = ConfigDB.get_by_params(%{group: :pleroma, key: Pleroma.Formatter})
assert new_opts == opts
assert Keyword.equal?(new_opts, opts)
end
test "change/0 skips if Pleroma.Formatter is empty", %{migration: migration} do