use passed context.Context

This commit is contained in:
CPunch 2023-12-04 20:45:23 -06:00
parent 0ebd162af0
commit 2a6fb25f03
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ func makeDummyPeer(ctx context.Context, is *is.I, recv chan<- *cnet.PacketEvent)
conn, err := net.Dial("tcp", fmt.Sprintf("127.0.0.1:%d", loginPort))
is.NoErr(err)
peer := cnet.NewPeer(context.Background(), conn)
peer := cnet.NewPeer(ctx, conn)
go func() {
peer.Handler(recv)
}()