Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Kuhnke <[email protected]>
  • Loading branch information
kaklakariada and ckunki authored Oct 22, 2024
1 parent f8adf4c commit 687f3dc
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class GitHubWorkflowJavaVersionCustomizerTest {
@Test
void singleJavaVersion() {
void testUpdateWithActionVersion4() {
final GitHubWorkflow workflow = customize("""
jobs:
build:
Expand All @@ -29,7 +29,7 @@ void singleJavaVersion() {
}

@Test
void updateNewerSetupJavaAction() {
void testUpdateWithActionVersion5() {
final GitHubWorkflow workflow = customize("""
jobs:
build:
Expand All @@ -46,7 +46,7 @@ void updateNewerSetupJavaAction() {
}

@Test
void updateWhenWithIsEmpty() {
void testUpdateEmptyJavaVersion() {
final GitHubWorkflow workflow = customize("""
jobs:
build:
Expand All @@ -60,7 +60,7 @@ void updateWhenWithIsEmpty() {
}

@Test
void multipleJavaVersion() {
void testUpdateToMultipleJavaVersions() {
final GitHubWorkflow workflow = customize("""
jobs:
build:
Expand All @@ -79,7 +79,7 @@ void multipleJavaVersion() {
}

@Test
void multipleUnknownAction() {
void testNoUpdateOfUnknownAction() {
final GitHubWorkflow workflow = customize("""
jobs:
build:
Expand All @@ -95,7 +95,7 @@ void multipleUnknownAction() {
}

@Test
void ignoreRunStep() {
void ignoreStepWithoutUsesDirective() {
final GitHubWorkflow workflow = customize("""
jobs:
build:
Expand Down

0 comments on commit 687f3dc

Please sign in to comment.