From 597de863006e52c2fd6f48bea62ce93a180415bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=A8=E7=88=B1=E6=97=A0=E7=97=95?= Date: Mon, 26 Sep 2022 14:55:27 +0800 Subject: [PATCH] Fix issue --- test/helper/common/test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/helper/common/test.go b/test/helper/common/test.go index 6fabe06a..56d0bad4 100644 --- a/test/helper/common/test.go +++ b/test/helper/common/test.go @@ -20,9 +20,9 @@ func TestCli() (err error) { var cmd *exec.Cmd if runtime.GOOS == "windows" { cmdStr = fmt.Sprintf(`%sztf.exe allure -allureReportDir .\test\cli\allure-results go test %stest\cli -v`, RootPath, RootPath) - cmd = exec.Command("cmd", "/C", cmdStr, "-uuid", "cli_auto_test") + cmd = exec.Command("cmd", "/C", cmdStr) } else { - cmd = exec.Command("/bin/bash", "-c", cmdStr, "-uuid", "cli_auto_test") + cmd = exec.Command("/bin/bash", "-c", cmdStr) } cmd.Dir = RootPath fmt.Println(cmd.String()) -- GitLab