updated stuff

This commit is contained in:
2026-01-23 19:07:05 +11:00
parent 1667423db6
commit af6bec983b
33 changed files with 1186 additions and 222 deletions

View File

@@ -465,7 +465,7 @@ func TestConcurrentGeneration(t *testing.T) {
errors := make(chan error, numGoroutines)
// Generate states concurrently
for i := 0; i < numGoroutines; i++ {
for range numGoroutines {
go func() {
state, userAgentKey, err := GenerateState(cfg, data)
if err != nil {
@@ -486,7 +486,7 @@ func TestConcurrentGeneration(t *testing.T) {
// Collect results
states := make(map[string]bool)
for i := 0; i < numGoroutines; i++ {
for range numGoroutines {
select {
case state := <-results:
if states[state] {