forked from AkkomaGang/akkoma
Fix buggy test.
This commit is contained in:
parent
3f9c778320
commit
762fafe738
1 changed files with 2 additions and 2 deletions
|
@ -914,7 +914,7 @@ test "the directMessage flag is present" do
|
||||||
assert modified["directMessage"] == false
|
assert modified["directMessage"] == false
|
||||||
|
|
||||||
{:ok, activity} =
|
{:ok, activity} =
|
||||||
CommonAPI.post(user, %{"status" => "@{other_user.nickname} :moominmamma:"})
|
CommonAPI.post(user, %{"status" => "@#{other_user.nickname} :moominmamma:"})
|
||||||
|
|
||||||
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
||||||
|
|
||||||
|
@ -922,7 +922,7 @@ test "the directMessage flag is present" do
|
||||||
|
|
||||||
{:ok, activity} =
|
{:ok, activity} =
|
||||||
CommonAPI.post(user, %{
|
CommonAPI.post(user, %{
|
||||||
"status" => "@{other_user.nickname} :moominmamma:",
|
"status" => "@#{other_user.nickname} :moominmamma:",
|
||||||
"visibility" => "direct"
|
"visibility" => "direct"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue