Skip to content

Commit

Permalink
fix: tests for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
debugtalk committed Jan 18, 2024
1 parent 0ffb909 commit 5ccf134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion myexec/cmd_uixt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion myexec/cmd_windows_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5ccf134

Please sign in to comment.