We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354fb95 commit befed08Copy full SHA for befed08
core/stream_test.go
@@ -40,6 +40,7 @@ func (ctx *streamCtx) teardownTest() {
40
}
41
42
func TestStreamReply(t *testing.T) {
43
+ t.Skip()
44
ctx := setupStreamTest(t)
45
defer ctx.teardownTest()
46
test/vpptesting/vpplauncher/vpplauncher.go
@@ -18,7 +18,6 @@ import (
18
"bytes"
19
"errors"
20
"fmt"
21
- "io/ioutil"
22
"os"
23
"os/exec"
24
"strconv"
@@ -133,7 +132,7 @@ func (p *VPP) CheckRunning() bool {
133
132
if _, err := os.Stat(p.opts.Pidfile); err != nil {
134
return false
135
136
- b, err := ioutil.ReadFile(p.opts.Pidfile)
+ b, err := os.ReadFile(p.opts.Pidfile)
137
if err != nil {
138
139
0 commit comments