Skip to content

Commit

Permalink
Bump org.mockito:mockito-core from 4.11.0 to 5.15.2 (#348)
Browse files Browse the repository at this point in the history
* Bump org.mockito:mockito-core from 4.11.0 to 5.15.2

Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 4.11.0 to 5.15.2.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v4.11.0...v5.15.2)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix test

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Stockinger <[email protected]>
  • Loading branch information
dependabot[bot] and dajudge authored Feb 11, 2025
1 parent dc14711 commit 8926502
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
testImplementation "org.testcontainers:junit-jupiter:$testcontainersVersion"
testImplementation "io.fabric8:kubernetes-client:6.8.0"
testImplementation "org.awaitility:awaitility:4.2.2"
testImplementation "org.mockito:mockito-core:4.11.0"
testImplementation "org.mockito:mockito-core:5.15.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testImplementation 'com.sparkjava:spark-core:2.9.4'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public class KubectlCreateSecretFluentUnitTest {
@Test
public void masksPassword() throws IOException, ExecutionException, InterruptedException {
underTest.dockerPassword("lolcats123").run("mySecret");
verify(exec).safeExecInContainer(eq(singletonList("lolcats123")), any(String.class));
verify(exec).safeExecInContainer(eq(singletonList("lolcats123")), any(String[].class));
}
}

0 comments on commit 8926502

Please sign in to comment.