mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-11 08:18:26 +00:00
Revert "Fix protocol close test"
This reverts commit 92c1ce57a698d6e45388a403557b592191ad46f3.
This commit is contained in:
parent
28e347002a
commit
ecc6476308
@ -5,7 +5,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"testing"
|
"testing"
|
||||||
"testing/quick"
|
"testing/quick"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestHeaderFunctions(t *testing.T) {
|
func TestHeaderFunctions(t *testing.T) {
|
||||||
@ -173,13 +172,7 @@ func TestClose(t *testing.T) {
|
|||||||
c0 := NewConnection("c0", ar, bw, m0).(wireFormatConnection).next.(*rawConnection)
|
c0 := NewConnection("c0", ar, bw, m0).(wireFormatConnection).next.(*rawConnection)
|
||||||
NewConnection("c1", br, aw, m1)
|
NewConnection("c1", br, aw, m1)
|
||||||
|
|
||||||
c0.close <- nil
|
c0.close(nil)
|
||||||
|
|
||||||
select {
|
|
||||||
case <-c0.closed:
|
|
||||||
case <-time.After(1 * time.Second):
|
|
||||||
t.Fatal("Did not close within a second")
|
|
||||||
}
|
|
||||||
|
|
||||||
if !c0.isClosed() {
|
if !c0.isClosed() {
|
||||||
t.Fatal("Connection should be closed")
|
t.Fatal("Connection should be closed")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user