Skip to content

Commit affaf19

Browse files
author
Yannick Weber
authored
replaced non-ascii single quote with ascii single quote (#5102)
1 parent 5f7ded3 commit affaf19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/hivemq/src/main/java/org/testcontainers/hivemq/HiveMQContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ protected void containerIsStarted(final @NotNull InspectContainerResponse contai
354354
}
355355

356356
if (!file.exists()) {
357-
throw new ContainerLaunchException("File '" + mountableFile.getFilesystemPath() + " does not exist.");
357+
throw new ContainerLaunchException("File '" + mountableFile.getFilesystemPath() + "' does not exist.");
358358
}
359359
final String containerPath = "/opt/hivemq" + PathUtil.prepareAppendPath(pathInHomeFolder);
360360
withCopyFileToContainer(cloneWithFileMode(mountableFile), containerPath);

0 commit comments

Comments
 (0)