File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/test/java/co/helmethair/scalatest/helper Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ repositories {
4747
4848dependencies {
4949 val junitPlatformVersion = " 1.6.0"
50- val junitJupiterVersion = " 5.8.2 "
50+ val junitJupiterVersion = " 5.9.1 "
5151
5252 val testScalaLibraryVersion = " 2.13"
5353 val testScalaVersion = " $testScalaLibraryVersion .4"
Original file line number Diff line number Diff line change @@ -26,7 +26,12 @@ default EngineDiscoveryRequest createClassDiscoveryRequest(String... classNames)
2626 }
2727
2828 default ConfigurationParameters configurationParametersOf (Map <String , Object > configParams ) {
29- return new ConfigurationParameters () {
29+ return new ConfigurationParameters () {
30+ @ Override
31+ public Set <String > keySet () {
32+ return configParams .keySet ();
33+ }
34+
3035 @ Override
3136 public Optional <String > get (String key ) {
3237 return Optional .ofNullable (configParams .get (key ).toString ());
You can’t perform that action at this time.
0 commit comments