Skip to content

Commit

Permalink
chore(dependencies): Autobump korkVersion (#6253)
Browse files Browse the repository at this point in the history
* chore(dependencies): Autobump korkVersion

* fix(aws/integration): fix scope of setup method while upgrading junit to 5.9.0

to fix:

> Task :clouddriver-aws:integrationTest

  com.netflix.spinnaker.clouddriver.aws.test.CreateServerGroupSpec ✘ initializationError

    org.junit.platform.commons.JUnitException: @beforeeach method 'private void com.netflix.spinnaker.clouddriver.aws.test.CreateServerGroupSpec.init(org.junit.jupiter.api.TestInfo)' must not be private.

---------

Co-authored-by: root <root@31d6695ca59c>
Co-authored-by: David Byron <dbyron@salesforce.com>
  • Loading branch information
3 people authored Jul 30, 2024
1 parent a5fc30d commit a768294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class CreateServerGroupSpec extends AwsBaseSpec {
private AmazonEC2 mockEc2 = mock(AmazonEC2.class);

@BeforeEach
private void init(TestInfo testInfo) {
void init(TestInfo testInfo) {
System.out.println("--------------- Test " + testInfo.getDisplayName());

// mock EC2 responses
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
korkVersion=7.234.0
korkVersion=7.236.0
fiatVersion=1.48.0
org.gradle.parallel=true
spinnakerGradleVersion=8.32.1
Expand Down

0 comments on commit a768294

Please sign in to comment.