Skip to content

Commit

Permalink
style: run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
ruilopesm committed Jan 30, 2024
1 parent 75573f7 commit ab4fde9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/safira_web/controllers/auth_controller_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ defmodule SafiraWeb.AuthControllerTest do
"nickname" => attendee.nickname,
"prizes" => [],
"redeemables" => [],
"token_balance" => 0,
"token_balance" => 0
}

assert json_response(conn, 200) == expected_user
Expand All @@ -54,7 +54,7 @@ defmodule SafiraWeb.AuthControllerTest do
"id" => company.id,
"name" => company.name,
"sponsorship" => company.sponsorship,
"type" => "company",
"type" => "company"
}

assert json_response(conn, 200) == expected_user
Expand All @@ -72,7 +72,7 @@ defmodule SafiraWeb.AuthControllerTest do
expected_user = %{
"email" => user.email,
"id" => user.id,
"type" => "staff",
"type" => "staff"
}

assert json_response(conn, 200) == expected_user
Expand Down

0 comments on commit ab4fde9

Please sign in to comment.