Skip to content

Commit dc79429

Browse files
committed
refactor: remove unnecessary logic
1 parent 07c694f commit dc79429

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

api/src/test/java/io/kafbat/ui/AbstractIntegrationTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ public abstract class AbstractIntegrationTest {
3535
public static final String LOCAL = "local";
3636
public static final String SECOND_LOCAL = "secondLocal";
3737

38-
private static final boolean IS_ARM =
39-
System.getProperty("os.arch").contains("arm") || System.getProperty("os.arch").contains("aarch64");
40-
41-
private static final String CONFLUENT_PLATFORM_VERSION = IS_ARM ? "7.2.1.arm64" : "7.2.1";
38+
private static final String CONFLUENT_PLATFORM_VERSION = "7.2.1";
4239

4340
public static final KafkaContainer kafka = new KafkaContainer(
4441
DockerImageName.parse("confluentinc/cp-kafka").withTag(CONFLUENT_PLATFORM_VERSION))

0 commit comments

Comments
 (0)