X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fsupport%2Fcaptcha_mock.ex;h=ef4e68bc554bb066f72f2d858d7e2cdc2f6f9faf;hb=c0b7bc2927cb7d4826fe2c992a90c571a06e94c1;hp=3ab02916f19b1a62dc2a700fbbb3896258450dab;hpb=bee6acd51dc4e84e44caecf9d123dfff2f640a38;p=akkoma diff --git a/test/support/captcha_mock.ex b/test/support/captcha_mock.ex index 3ab02916f..ef4e68bc5 100644 --- a/test/support/captcha_mock.ex +++ b/test/support/captcha_mock.ex @@ -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