un-catching unused variables in seeds
This commit is contained in:
parent
5c4ae401d9
commit
61db634c36
1 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ alias Shift73k.Accounts.User
|
||||||
############################################################################
|
############################################################################
|
||||||
## INSERTING MOCK USER DATA
|
## INSERTING MOCK USER DATA
|
||||||
|
|
||||||
{:ok, admin} =
|
{:ok, _admin} =
|
||||||
Accounts.register_user(%{
|
Accounts.register_user(%{
|
||||||
email: "admin@company.com",
|
email: "admin@company.com",
|
||||||
password: "123456789abc",
|
password: "123456789abc",
|
||||||
|
@ -25,7 +25,7 @@ alias Shift73k.Accounts.User
|
||||||
role: Accounts.registration_role()
|
role: Accounts.registration_role()
|
||||||
})
|
})
|
||||||
|
|
||||||
{:ok, user_1} =
|
{:ok, _user_1} =
|
||||||
Accounts.register_user(%{
|
Accounts.register_user(%{
|
||||||
email: "user1@company.com",
|
email: "user1@company.com",
|
||||||
password: "123456789abc",
|
password: "123456789abc",
|
||||||
|
@ -33,7 +33,7 @@ alias Shift73k.Accounts.User
|
||||||
role: Accounts.registration_role()
|
role: Accounts.registration_role()
|
||||||
})
|
})
|
||||||
|
|
||||||
{:ok, user_2} =
|
{:ok, _user_2} =
|
||||||
Accounts.register_user(%{
|
Accounts.register_user(%{
|
||||||
email: "user2@company.com",
|
email: "user2@company.com",
|
||||||
password: "123456789abc",
|
password: "123456789abc",
|
||||||
|
|
Loading…
Reference in a new issue