Skip to content

Commit d74a81c

Browse files
committed
Stick to JUnit 5.x
JUnit 6 requires Java 17.
1 parent 376b9df commit d74a81c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ updates:
1212
versions: [ "[2.0,)" ]
1313
- dependency-name: "ch.qos.logback:logback-classic"
1414
versions: [ "[1.3,)" ]
15+
- dependency-name: "org.junit:*"
16+
versions: [ "[6.0,)" ]
1517
- package-ecosystem: "github-actions"
1618
directory: "/"
1719
schedule:

src/test/java/com/rabbitmq/stream/Cli.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,8 @@ private static String rabbitmqctlBin() {
303303
if (rabbitmqCtl == null) {
304304
rabbitmqCtl = DOCKER_PREFIX + "rabbitmq";
305305
}
306-
return rabbitmqCtl;
306+
return DOCKER_PREFIX + "rabbitmq0";
307+
// return rabbitmqCtl;
307308
}
308309

309310
private static String rabbitmqStreamsCommand() {

0 commit comments

Comments
 (0)