Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
RichDom2185 committed Sep 20, 2024
1 parent 5d5b902 commit d548f71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ defmodule CadetWeb.AdminAssessmentsControllerTest do
"isPublished" => &1.is_published,
"gradedCount" => 0,
"questionCount" => 9,
"xp" => (if &1.is_grading_published, do: (800 + 500 + 100) * 3, else: 0),
"xp" => if(&1.is_grading_published, do: (800 + 500 + 100) * 3, else: 0),
"earlySubmissionXp" => &1.config.early_submission_xp,
"hasVotingFeatures" => &1.has_voting_features,
"hasTokenCounter" => &1.has_token_counter,
Expand Down

0 comments on commit d548f71

Please sign in to comment.