fix error

This commit is contained in:
Edward 2020-04-29 17:33:31 +08:00
parent e7a0048a76
commit 51a141a35e
3 changed files with 6 additions and 6 deletions

View file

@ -76,7 +76,7 @@ func (s *Subscription) Receive(out *Message) error {
case <-s.ctx.Done():
return errors.New("Topic has been closed")
default:
*out <- s.Inbox
*out = <-s.Inbox
}
return nil
}

View file

@ -26,7 +26,7 @@ func TestMessageSubAndPub(t *testing.T) {
//订阅成功了
go func() {
EXIT
EXIT:
for {
select {
case <-exit:
@ -56,7 +56,7 @@ func TestMessageSubAndPub(t *testing.T) {
//订阅成功了
//发送一个消息
go func() {
EXIT
EXIT:
for {
select {
case <-exit:

View file

@ -15,8 +15,8 @@ func TestContext(t *testing.T) {
time.Sleep(time.Second)
reqest, err := http.NewRequest("GET", "http://localhost:8099/hello", nil) // http client get 请求
assertEq(nil, err)
reqest, _ := http.NewRequest("GET", "http://localhost:8099/hello", nil) // http client get 请求
client := &http.Client{}
ctx, cancel := context.WithCancel(context.Background())
reqest = reqest.WithContext(ctx)
@ -28,7 +28,7 @@ func TestContext(t *testing.T) {
}
}()
response, err := client.Do(reqest)
client.Do(reqest)
}