1
0
mirror of https://github.com/golang/go synced 2024-10-01 01:18:32 -06:00

net/http/cgi: fix plan9 build

Cleanup CL https://golang.org/cl/41691 broke the plan9 build by removing
a use of a package but not removing the package import.

Trybots don't check that. I filed #20119 for that.

Change-Id: Ia030e6924665dfb871ca964455b899d51b0200c2
Reviewed-on: https://go-review.googlesource.com/41752
Reviewed-by: David du Colombier <0intro@gmail.com>
This commit is contained in:
Brad Fitzpatrick 2017-04-25 20:08:31 +00:00
parent 7fc82104ea
commit 5d306dcdac

View File

@ -9,7 +9,6 @@ package cgi
import ( import (
"os" "os"
"strconv" "strconv"
"testing"
) )
func isProcessRunning(pid int) bool { func isProcessRunning(pid int) bool {