Skip to content

Commit

Permalink
[Hexlet#260] fix linter and code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
d1z3d committed Jun 23, 2024
1 parent 9f25184 commit bebe40a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.io.Serializable;

import static io.hexlet.typoreporter.test.factory.EntitiesFactory.ACCOUNT_INCORRECT_EMAIL;

@Component
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/hexlet/typoreporter/web/LoginIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static void datasourceProperties(DynamicPropertyRegistry registry) {
private static final String EMAIL_UPPER_CASE = "EMAIL_ADDRESS@GOOGLE.COM";
private static final String EMAIL_LOWER_CASE = EMAIL_UPPER_CASE.toLowerCase();

private SignupAccountModel model = new SignupAccountModel(
private final SignupAccountModel model = new SignupAccountModel(
"model_upper_case",
EMAIL_UPPER_CASE,
"password", "password",
Expand Down

0 comments on commit bebe40a

Please sign in to comment.