diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2021-01-25 15:34:59 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2021-01-26 08:27:45 +0300 |
commit | 875fbaae35fe73f01d7fd55c255043dda929e365 (patch) | |
tree | 97df4e86816201611afe5dbe1c4eee772b8f913b /test/support | |
parent | 250e2020987b1fc65251ba9564e41b38ba060391 (diff) | |
download | pleroma-875fbaae35fe73f01d7fd55c255043dda929e365.tar.gz |
support for expires_in/expires_at in filters
Diffstat (limited to 'test/support')
-rw-r--r-- | test/support/factory.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/support/factory.ex b/test/support/factory.ex index bf9592064..284d573f9 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -455,7 +455,8 @@ defmodule Pleroma.Factory do %Pleroma.Filter{ user: build(:user), filter_id: sequence(:filter_id, & &1), - phrase: "cofe" + phrase: "cofe", + context: ["home"] } end end |