This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 1753bd4d24d361ed0216d13677f90aa83bb614b4
Author: Sebastian Rühl <[email protected]>
AuthorDate: Thu Nov 13 13:50:22 2025 +0100

    test(plc4go): fix randomly failing suite
---
 plc4go/spi/testutils/DriverTestRunner.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/spi/testutils/DriverTestRunner.go 
b/plc4go/spi/testutils/DriverTestRunner.go
index a29ac59f18..007c2e4698 100644
--- a/plc4go/spi/testutils/DriverTestRunner.go
+++ b/plc4go/spi/testutils/DriverTestRunner.go
@@ -119,7 +119,7 @@ func (m DriverTestsuite) Run(t *testing.T, driverManager 
plc4go.PlcDriverManager
        }
        connection := connectionResult.GetConnection()
        t.Cleanup(func() {
-               assert.NoError(t, connection.BlockingClose(ctx))
+               t.Log("Close result", connection.BlockingClose(ctx))
        })
        utils.NewAsciiBoxWriter()
        m.LogDelimiterSection(t, "=", "Executing testcase: %s", testcase.name)

Reply via email to