Skip to content

Commit

Permalink
Fix checkStyle violation in test cases names
Browse files Browse the repository at this point in the history
  • Loading branch information
logical-1985516 committed Oct 3, 2024
1 parent 8a78498 commit 6089ffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/reposense/git/GitBlameTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void blameFile_validFile_success() {
}

@Test
public void blameFile_withPreviousAuthors_validFile_success() {
public void blameFile_validFileWithPreviousAuthors_success() {
config.setBranch(TEST_REPO_BLAME_WITH_PREVIOUS_AUTHORS_BRANCH);
GitCheckout.checkoutBranch(config.getRepoRoot(), TEST_REPO_BLAME_WITH_PREVIOUS_AUTHORS_BRANCH);
createTestIgnoreRevsFile(AUTHOR_TO_IGNORE_BLAME_COMMIT_LIST_07082021);
Expand All @@ -122,7 +122,7 @@ public void blameFile_nonExistentFile_throwsRunTimeException() {
}

@Test
public void blameFile_withPreviousAuthors_nonExistentFile_throwsRunTimeException() {
public void blameFile_nonExistentFileWithPreviousAuthors_throwsRunTimeException() {
Assertions.assertThrows(RuntimeException.class, () -> GitBlame.blameFile(config.getRepoRoot(),
"nonExistentFile", true));
}
Expand Down

0 comments on commit 6089ffe

Please sign in to comment.