mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-13 19:16:15 +00:00
Tests: Fix tests failing because of info being null.
This commit is contained in:
parent
d52f9c144f
commit
6f5ac0819a
|
@ -10,7 +10,8 @@ defmodule Pleroma.Builders.UserBuilder do
|
||||||
password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
|
password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
|
||||||
bio: "A tester.",
|
bio: "A tester.",
|
||||||
ap_id: "some id",
|
ap_id: "some id",
|
||||||
last_digest_emailed_at: NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second)
|
last_digest_emailed_at: NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second),
|
||||||
|
info: %{}
|
||||||
}
|
}
|
||||||
|
|
||||||
Map.merge(user, data)
|
Map.merge(user, data)
|
||||||
|
|
Loading…
Reference in a new issue