Skip to content

Commit

Permalink
Test_WithGetterParallel reduce count to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
VladislavsPerkanuks committed Oct 13, 2023
1 parent 2b89e00 commit ea8d3f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lru/lru_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func Test_WithGetterParallel(t *testing.T) {

var eg errgroup.Group

for i := 0; i < 10_000; i++ {
for i := 0; i < 1000; i++ {
eg.Go(func() error {
v, err := c.Get(context.Background(), 1)
if err != nil {
Expand Down

0 comments on commit ea8d3f8

Please sign in to comment.