This is an automated email from the ASF dual-hosted git repository.
chrisdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git
The following commit(s) were added to refs/heads/develop by this push:
new 45f5666725 fix: Removed an unneeded parameter (which I first thought
was useful and forgot to remove)
45f5666725 is described below
commit 45f56667258ffb6bc9910de5f982741524da4168
Author: Christofer Dutz <[email protected]>
AuthorDate: Thu Jul 16 17:25:21 2026 +0200
fix: Removed an unneeded parameter (which I first thought was useful and
forgot to remove)
---
.../subscriptionemulation/PollingSubscriptionConnectionBaseTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/plc4j/utils/subscription-emulation/src/test/java/org/apache/plc4x/java/utils/subscriptionemulation/PollingSubscriptionConnectionBaseTest.java
b/plc4j/utils/subscription-emulation/src/test/java/org/apache/plc4x/java/utils/subscriptionemulation/PollingSubscriptionConnectionBaseTest.java
index 78bfd12e71..146b3cdc0f 100644
---
a/plc4j/utils/subscription-emulation/src/test/java/org/apache/plc4x/java/utils/subscriptionemulation/PollingSubscriptionConnectionBaseTest.java
+++
b/plc4j/utils/subscription-emulation/src/test/java/org/apache/plc4x/java/utils/subscriptionemulation/PollingSubscriptionConnectionBaseTest.java
@@ -219,7 +219,7 @@ class PollingSubscriptionConnectionBaseTest {
private final PlcTagHandler tagHandler;
public TestConnection(AtomicInteger valueSupplier, PlcTagHandler
tagHandler) {
- super(new TestConfiguration(), mock(TransportInstance.class),
mock(AuditLog.class), "test");
+ super(new TestConfiguration(), mock(TransportInstance.class),
mock(AuditLog.class));
this.valueSupplier = valueSupplier;
this.tagHandler = tagHandler;
}
@@ -266,7 +266,7 @@ class PollingSubscriptionConnectionBaseTest {
private final PlcTagHandler tagHandler;
public TestConnectionWithoutReader(PlcTagHandler tagHandler) {
- super(new TestConfiguration(), mock(TransportInstance.class),
mock(AuditLog.class), "test");
+ super(new TestConfiguration(), mock(TransportInstance.class),
mock(AuditLog.class));
this.tagHandler = tagHandler;
}