Skip to content

Commit

Permalink
fix coverage on exec.Cmd suffixed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-the-programmer committed Oct 24, 2022
1 parent 42e9bff commit e16f876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minikube/service/minikube_log_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ func Test_machineLogBridge_Write(t *testing.T) {
{
name: "Environment",
lb: machineLogBridge{},
args: args{b: []byte("exec.Cmd")},
wantN: len([]byte("exec.Cmd")),
args: args{b: []byte("&exec.Cmd")},
wantN: len([]byte("&exec.Cmd")),
wantErr: false,
},
{
Expand Down

0 comments on commit e16f876

Please sign in to comment.