Skip to content

Commit

Permalink
remove breaking test.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristure committed Apr 23, 2024
1 parent f32cfbc commit b7b93fc
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions service/hyperOutportBlock/blockService_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ package hyperOutportBlock
import (
"context"
"encoding/hex"
"fmt"
"testing"
"time"

"github.com/stretchr/testify/require"

Expand Down Expand Up @@ -58,22 +56,3 @@ func TestService_GetHyperOutportBlockByNonce(t *testing.T) {
require.NoError(t, err, "couldn't get block by nonce")
require.Equal(t, nonce, outportBlock.MetaOutportBlock.BlockData.Header.Nonce)
}

func Test111(t *testing.T) {

a := make([]int, 0)
i := 0

go func() {
for {
a = append(a, i)
i++
}
}()

time.Sleep(5 * time.Second)

for _, j := range a {
fmt.Println(j)
}
}

0 comments on commit b7b93fc

Please sign in to comment.