From 61db634c362ef7d6516ab36c777be28081c3a9ca Mon Sep 17 00:00:00 2001 From: Adam Piontek Date: Sat, 6 Mar 2021 07:56:54 -0500 Subject: [PATCH] un-catching unused variables in seeds --- priv/repo/seeds.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/priv/repo/seeds.exs b/priv/repo/seeds.exs index d9f3596d..ebadb34b 100644 --- a/priv/repo/seeds.exs +++ b/priv/repo/seeds.exs @@ -17,7 +17,7 @@ alias Shift73k.Accounts.User ############################################################################ ## INSERTING MOCK USER DATA -{:ok, admin} = +{:ok, _admin} = Accounts.register_user(%{ email: "admin@company.com", password: "123456789abc", @@ -25,7 +25,7 @@ alias Shift73k.Accounts.User role: Accounts.registration_role() }) -{:ok, user_1} = +{:ok, _user_1} = Accounts.register_user(%{ email: "user1@company.com", password: "123456789abc", @@ -33,7 +33,7 @@ alias Shift73k.Accounts.User role: Accounts.registration_role() }) -{:ok, user_2} = +{:ok, _user_2} = Accounts.register_user(%{ email: "user2@company.com", password: "123456789abc",