logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 36b3867787b3aff206df4a7d5549d9269dcf0457
parent b51ba39dd1310bb525496645df13d956f0fc7b12
Author: Mark Felder <feld@feld.me>
Date:   Tue, 28 Nov 2023 20:19:31 +0000

Fix test "transforms config to tuples"

This should have never worked. The default empty values for the other MRF Simple options will always be there.

Diffstat:

Mtest/pleroma/config/deprecation_warnings_test.exs5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/test/pleroma/config/deprecation_warnings_test.exs b/test/pleroma/config/deprecation_warnings_test.exs @@ -125,13 +125,12 @@ defmodule Pleroma.Config.DeprecationWarningsTest do media_removal: ["some.removal", {"some.other.instance", "Some reason"}] ) - expected_config = [ + expected_config = {:media_removal, [{"some.removal", ""}, {"some.other.instance", "Some reason"}]} - ] capture_log(fn -> DeprecationWarnings.warn() end) - assert Config.get([:mrf_simple]) == expected_config + assert expected_config in Config.get([:mrf_simple]) end test "doesn't give a warning with correct config" do