Merge branch '3.1.x'

Closes gh-36910
This commit is contained in:
Moritz Halbritter
2023-08-10 12:21:26 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ class DockerCliCommandTests {
DockerCliCommand<?> command = new DockerCliCommand.ComposeStart(LogLevel.INFO);
assertThat(command.getType()).isEqualTo(DockerCliCommand.Type.DOCKER_COMPOSE);
assertThat(command.getLogLevel()).isEqualTo(LogLevel.INFO);
assertThat(command.getCommand()).containsExactly("start", "--no-color", "--detach", "--wait");
assertThat(command.getCommand()).containsExactly("start", "--detach", "--wait");
assertThat(command.deserialize("[]")).isNull();
}