forked from AkkomaGang/akkoma
Merge branch 'fix-test' into 'develop'
Fix uploads test. See merge request pleroma/pleroma!564
This commit is contained in:
commit
7d9254fb4a
1 changed files with 6 additions and 1 deletions
|
@ -30,7 +30,12 @@ test "uploads migrated" do
|
||||||
|
|
||||||
assert_received {:mix_shell, :info, [message]}
|
assert_received {:mix_shell, :info, [message]}
|
||||||
|
|
||||||
assert %{"count" => ^total_count, "total_count" => ^total_count} =
|
# @logevery in Mix.Tasks.Pleroma.Uploads
|
||||||
|
count =
|
||||||
|
min(50, String.to_integer(total_count))
|
||||||
|
|> to_string()
|
||||||
|
|
||||||
|
assert %{"count" => ^count, "total_count" => ^total_count} =
|
||||||
Regex.named_captures(
|
Regex.named_captures(
|
||||||
~r"^Uploaded (?<count>\d+)/(?<total_count>\d+) files$",
|
~r"^Uploaded (?<count>\d+)/(?<total_count>\d+) files$",
|
||||||
message
|
message
|
||||||
|
|
Loading…
Reference in a new issue