fix #2002 update dependency mockk to 1.14.9 and vert.x to 5.0.7#2003
Merged
vsct-jburet merged 2 commits intomasterfrom Feb 12, 2026
Merged
fix #2002 update dependency mockk to 1.14.9 and vert.x to 5.0.7#2003vsct-jburet merged 2 commits intomasterfrom
vsct-jburet merged 2 commits intomasterfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Updates core test dependencies to resolve MockK 1.14.9 incompatibility (issue #2002) and adapts the codebase to the removal of JUnit4 as a transitive dependency.
Changes:
- Bump
mockkdependency to1.14.9. - Update tests to use JUnit Jupiter imports/annotations instead of legacy JUnit3/4 APIs.
- Bump Vert.x version property from
5.0.4to5.0.7.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
pom.xml |
Bumps dependency properties for MockK (and Vert.x) to address compatibility/build issues. |
bot/storage-mongo/src/test/kotlin/StoryDefinitionConfigurationMongoDAOTest.kt |
Replaces legacy JUnit assertion import with JUnit Jupiter assertions. |
bot/connector-web/src/test/kotlin/WebMessageProcessorTest.kt |
Migrates to JUnit Jupiter @Test and updates expectations to include actionId. |
bot/storage-mongo/src/test/kotlin/StoryDefinitionConfigurationMongoDAOTest.kt
Show resolved
Hide resolved
vsct-jburet
approved these changes
Feb 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2002 by bumping the dependency version and fixing compile-time errors.
Note
The new update removes the transitive dependency on junit4.