You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/20 14:22:26 UTC

[plc4x] 01/03: feat(plc4go/spi): improve output from DriverTestRunner

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 6000069a02ffbe83ce2438e1cd1a5f45730e2883
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Tue Jun 20 11:17:35 2023 +0200

    feat(plc4go/spi): improve output from DriverTestRunner
---
 plc4go/spi/testutils/DriverTestRunner.go | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/plc4go/spi/testutils/DriverTestRunner.go b/plc4go/spi/testutils/DriverTestRunner.go
index 487e1e859a..15a11e3a68 100644
--- a/plc4go/spi/testutils/DriverTestRunner.go
+++ b/plc4go/spi/testutils/DriverTestRunner.go
@@ -157,9 +157,7 @@ func (m DriverTestsuite) ExecuteStep(t *testing.T, connection plc4go.PlcConnecti
 	}
 
 	start := time.Now()
-	t.Logf("\n-------------------------------------------------------\n - Executing step: %s \n-------------------------------------------------------\n", step.name)
-
-	t.Logf("Handling step %s", step.stepType)
+	t.Logf("\n-------------------------------------------------------\n - Executing step (%s): %s\n-------------------------------------------------------\n", step.stepType, step.name)
 	switch step.stepType {
 	case StepTypeApiRequest:
 		switch step.payload.Name {