forked from AkkomaGang/akkoma
fix yet another keyword equality check
This commit is contained in:
parent
80cbdc8480
commit
c7aeeec232
1 changed files with 9 additions and 8 deletions
|
@ -204,14 +204,7 @@ test "load a settings with large values and pass to file", %{temp_file: temp_fil
|
||||||
avatar_upload_limit: 2_000_000,
|
avatar_upload_limit: 2_000_000,
|
||||||
background_upload_limit: 4_000_000,
|
background_upload_limit: 4_000_000,
|
||||||
banner_upload_limit: 4_000_000,
|
banner_upload_limit: 4_000_000,
|
||||||
poll_limits:
|
poll_limits: {_, _, poll_limits},
|
||||||
{_, _,
|
|
||||||
[
|
|
||||||
max_options: 20,
|
|
||||||
max_option_chars: 200,
|
|
||||||
min_expiration: 0,
|
|
||||||
max_expiration: 31_536_000
|
|
||||||
]},
|
|
||||||
registrations_open: true,
|
registrations_open: true,
|
||||||
federating: true,
|
federating: true,
|
||||||
federation_incoming_replies_max_depth: 100,
|
federation_incoming_replies_max_depth: 100,
|
||||||
|
@ -256,6 +249,14 @@ test "load a settings with large values and pass to file", %{temp_file: temp_fil
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
] = config_quote
|
] = config_quote
|
||||||
|
|
||||||
|
assert Keyword.equal?(
|
||||||
|
poll_limits,
|
||||||
|
max_options: 20,
|
||||||
|
max_option_chars: 200,
|
||||||
|
min_expiration: 0,
|
||||||
|
max_expiration: 31_536_000
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue