From 351595e20b4ea94a135c3cd86fdfa4432f7613a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=99=E6=B3=93=E9=93=AE?= Date: Wed, 25 Sep 2024 22:53:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E8=AF=AD=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hrp/internal/version/VERSION | 2 +- hrp/runner.go | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/hrp/internal/version/VERSION b/hrp/internal/version/VERSION index d8c336c9..8219c475 100644 --- a/hrp/internal/version/VERSION +++ b/hrp/internal/version/VERSION @@ -1 +1 @@ -v5.0.0-beta-2409252249 +v5.0.0-beta-2409252253 diff --git a/hrp/runner.go b/hrp/runner.go index 32491c13..c1eaa3ea 100644 --- a/hrp/runner.go +++ b/hrp/runner.go @@ -474,9 +474,7 @@ func (r *CaseRunner) parseConfig() (parsedConfig *TConfig, err error) { return parsedConfig, nil } -func (r *CaseRunner) parseDeviceConfig( - device interface{}, configVariables map[string]interface{}, -) error { +func (r *CaseRunner) parseDeviceConfig(device interface{}, configVariables map[string]interface{}) error { deviceValue := reflect.ValueOf(device).Elem() deviceType := deviceValue.Type() for i := 0; i < deviceType.NumField(); i++ {