blob: 5283b66cecd074a5f44f9c9deae9b8a0da5209ad [file] [log] [blame]
Andrew Gerrand6d10a0c2015-10-14 04:11:41 +00001// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
Keith Rarick50b8ccc2014-11-12 11:43:30 -08004
5package http2
6
7import (
8 "errors"
9 "testing"
10)
11
12func TestPipeClose(t *testing.T) {
13 var p pipe
14 p.c.L = &p.m
15 a := errors.New("a")
16 b := errors.New("b")
17 p.Close(a)
18 p.Close(b)
19 _, err := p.Read(make([]byte, 1))
20 if err != a {
21 t.Errorf("err = %v want %v", err, a)
22 }
23}