Skip to content

Commit

Permalink
fix: rotator test
Browse files Browse the repository at this point in the history
  • Loading branch information
byte-bandit committed Mar 7, 2024
1 parent fb17ce4 commit b2dc698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/rotator/rotator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ func Test_Rotator_RotateKeys(t *testing.T) {
wg := &sync.WaitGroup{}

// Confirm rotator is concurrency safe
wg.Add(3 * 99)
for i := 0; i < 3; i++ {
wg.Add(1)
go func() {
for i := 1; i < 100; i++ {
r.RotateKeys(context.Background())
Expand Down

0 comments on commit b2dc698

Please sign in to comment.