diff options
author | lain <lain@soykaf.club> | 2019-05-17 11:49:13 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-05-17 11:49:13 +0200 |
commit | 249b31ffe53115ad187235890c405138ba190e14 (patch) | |
tree | 7519a1ad4b25959513e4820b7a0afd3b105b6cf2 /test | |
parent | 67af50ec713d46e6e1d72605b985858cc15aad3c (diff) | |
download | pleroma-249b31ffe53115ad187235890c405138ba190e14.tar.gz pleroma-249b31ffe53115ad187235890c405138ba190e14.zip |
Fix specs.
Diffstat (limited to 'test')
-rw-r--r-- | test/web/ostatus/ostatus_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/ostatus/ostatus_test.exs b/test/web/ostatus/ostatus_test.exs index 3516a13fa..f6be16862 100644 --- a/test/web/ostatus/ostatus_test.exs +++ b/test/web/ostatus/ostatus_test.exs @@ -407,7 +407,7 @@ defmodule Pleroma.Web.OStatusTest do {:ok, user} = OStatus.find_or_make_user(uri) old_name = user.name old_bio = user.bio - change = Ecto.Changeset.change(user, %{avatar: nil, bio: nil, old_name: nil}) + change = Ecto.Changeset.change(user, %{avatar: nil, bio: nil, name: nil}) {:ok, user} = Repo.update(change) refute user.avatar |