Merge branch 'hotfix/delete-activities' into 'develop'
[akkoma] / test / support / captcha_mock.ex
index 3ab02916f19b1a62dc2a700fbbb3896258450dab..ef4e68bc554bb066f72f2d858d7e2cdc2f6f9faf 100644 (file)
@@ -7,11 +7,8 @@ defmodule Pleroma.Captcha.Mock do
   @behaviour Service
 
   @impl Service
-  def new(), do: %{type: :mock}
+  def new, do: %{type: :mock}
 
   @impl Service
-  def validate(_token, _captcha), do: true
-
-  @impl Service
-  def cleanup(), do: :ok
+  def validate(_token, _captcha, _data), do: :ok
 end