diff options
author | rinpatch <rinpatch@sdf.org> | 2020-03-13 18:50:17 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-03-13 18:50:17 +0000 |
commit | 994ac4357cb6c3f64a8889d3a98f9a3adbd37010 (patch) | |
tree | 13bd2a235d338a40c5e2a637b1b3fd476db8637a /test | |
parent | 658f30c0b3cc5403d1172a07adba8bdcd79eb82c (diff) | |
parent | fffc382f138442035337e55eb930324d13bbdca8 (diff) | |
download | pleroma-994ac4357cb6c3f64a8889d3a98f9a3adbd37010.tar.gz |
Merge branch 'fix/hashtags-streaming' into 'develop'
Fix hashtags WebSocket streaming
Closes #1593
See merge request pleroma/pleroma!2294
Diffstat (limited to 'test')
-rw-r--r-- | test/activity/ir/topics_test.exs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/activity/ir/topics_test.exs b/test/activity/ir/topics_test.exs index e75f83586..44aec1e19 100644 --- a/test/activity/ir/topics_test.exs +++ b/test/activity/ir/topics_test.exs @@ -59,8 +59,8 @@ defmodule Pleroma.Activity.Ir.TopicsTest do describe "public visibility create events" do setup do activity = %Activity{ - object: %Object{data: %{"type" => "Create", "attachment" => []}}, - data: %{"to" => [Pleroma.Constants.as_public()]} + object: %Object{data: %{"attachment" => []}}, + data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]} } {:ok, activity: activity} @@ -98,8 +98,8 @@ defmodule Pleroma.Activity.Ir.TopicsTest do describe "public visibility create events with attachments" do setup do activity = %Activity{ - object: %Object{data: %{"type" => "Create", "attachment" => ["foo"]}}, - data: %{"to" => [Pleroma.Constants.as_public()]} + object: %Object{data: %{"attachment" => ["foo"]}}, + data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]} } {:ok, activity: activity} |