We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a60c462 commit 5832fdfCopy full SHA for 5832fdf
process/process_test.go
@@ -657,6 +657,9 @@ func Test_CPUTimes(t *testing.T) {
657
}
658
659
func Test_OpenFiles(t *testing.T) {
660
+ fp, err := os.Open("process_test.go")
661
+ defer fp.Close()
662
+
663
pid := os.Getpid()
664
p, err := NewProcess(int32(pid))
665
skipIfNotImplementedErr(t, err)
v3/process/process_test.go
@@ -659,6 +659,9 @@ func Test_CPUTimes(t *testing.T) {
666
667
0 commit comments