Merge remote-tracking branch 'remotes/origin/develop' into 2168-media-preview-proxy
[akkoma] / test / tasks / uploads_test.exs
index a76e96df50d2038656a21bf09bd21f8de4634858..d69e149a808dadc94d69adf02b3b40d89fbf46ae 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.UploadsTest do
   alias Pleroma.Upload
   use Pleroma.DataCase
@@ -30,7 +34,12 @@ defmodule Mix.Tasks.Pleroma.UploadsTest do
 
         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(
                    ~r"^Uploaded (?<count>\d+)/(?<total_count>\d+) files$",
                    message