diff --git a/myexec/cmd_uixt_test.go b/myexec/cmd_uixt_test.go index 2381f94..6bfe153 100644 --- a/myexec/cmd_uixt_test.go +++ b/myexec/cmd_uixt_test.go @@ -2,7 +2,7 @@ package myexec import "testing" -func TestRunShell(t *testing.T) { +func TestRunShellUnix(t *testing.T) { exitCode, err := RunShell("echo hello world") if err != nil { t.Fatal(err) diff --git a/myexec/cmd_windows_test.go b/myexec/cmd_windows_test.go index 31d84d8..549110b 100644 --- a/myexec/cmd_windows_test.go +++ b/myexec/cmd_windows_test.go @@ -2,7 +2,7 @@ package myexec import "testing" -func TestRunShell(t *testing.T) { +func TestRunShellWindows(t *testing.T) { exitCode, err := RunShell("echo hello world") if err != nil { t.Fatal(err)