diff options
Diffstat (limited to 'src/pkg/http/fcgi/fcgi_test.go')
| -rw-r--r-- | src/pkg/http/fcgi/fcgi_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pkg/http/fcgi/fcgi_test.go b/src/pkg/http/fcgi/fcgi_test.go index 5c8e46bd75..e42f8efd65 100644 --- a/src/pkg/http/fcgi/fcgi_test.go +++ b/src/pkg/http/fcgi/fcgi_test.go @@ -7,7 +7,6 @@ package fcgi import ( "bytes" "io" - "os" "testing" ) @@ -69,7 +68,7 @@ type nilCloser struct { io.ReadWriter } -func (c *nilCloser) Close() os.Error { return nil } +func (c *nilCloser) Close() error { return nil } func TestStreams(t *testing.T) { var rec record |
