Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
leoslopez committed Mar 1, 2024
1 parent e2f6046 commit 4b35366
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ from [User] u

var queryParams = new { IdUser = idUser };
var result = await connection.QueryFirstOrDefaultAsync<int?>(query, queryParams);
return result?? 0;
return result ?? 0;
}

Check warning on line 176 in Doppler.ContactPolicies.Data.Access/Repositories/ContactPoliciesSettings/ContactPoliciesSettingsRepository.cs

View check run for this annotation

Codecov / codecov/patch

Doppler.ContactPolicies.Data.Access/Repositories/ContactPoliciesSettings/ContactPoliciesSettingsRepository.cs#L173-L176

Added lines #L173 - L176 were not covered by tests

#endregion
Expand Down

0 comments on commit 4b35366

Please sign in to comment.