@@ -62,7 +62,6 @@ func TestConnect(t *testing.T) {
6262 })
6363
6464 t .Run ("ok" , func (t * testing.T ) {
65- t .Parallel ()
6665 jsonhttptest .Request (t , testServer , http .MethodPost , "/connect" + underlay , http .StatusOK ,
6766 jsonhttptest .WithExpectedJSONResponse (api.PeerConnectResponse {
6867 Address : overlay .String (),
@@ -71,7 +70,6 @@ func TestConnect(t *testing.T) {
7170 })
7271
7372 t .Run ("error" , func (t * testing.T ) {
74- t .Parallel ()
7573 jsonhttptest .Request (t , testServer , http .MethodPost , "/connect" + errorUnderlay , http .StatusInternalServerError ,
7674 jsonhttptest .WithExpectedJSONResponse (jsonhttp.StatusResponse {
7775 Code : http .StatusInternalServerError ,
@@ -81,7 +79,6 @@ func TestConnect(t *testing.T) {
8179 })
8280
8381 t .Run ("error - add peer" , func (t * testing.T ) {
84- t .Parallel ()
8582 testServer , _ , _ , _ := newTestServer (t , testServerOptions {
8683 P2P : mock .New (mock .WithConnectFunc (func (ctx context.Context , addrs []ma.Multiaddr ) (* bzz.Address , error ) {
8784 for _ , addr := range addrs {
0 commit comments