Skip to content

Commit

Permalink
version 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cuhsat committed May 17, 2024
1 parent c253c3c commit f9da18f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/sys/sys_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ func TestCall(t *testing.T) {
stdout := new(strings.Builder)
stderr := new(strings.Builder)

code := call(stdout, stderr, "go", "version")
code := call(stdout, stderr, "uname")

if !strings.Contains(stdout.String(), "go version go") {
if len(stdout.String()) == 0 {
t.Fatal("Stdout", stdout.String())
}

Expand Down

0 comments on commit f9da18f

Please sign in to comment.