diff --git a/context_test.go b/context_test.go index 6ada8ec..9814c50 100644 --- a/context_test.go +++ b/context_test.go @@ -98,7 +98,7 @@ func parallelReader(r *http.Request, key string, iterations int, wait, done chan func parallelWriter(r *http.Request, key, value string, iterations int, wait, done chan struct{}) { <-wait for i := 0; i < iterations; i++ { - Get(r, key) + Set(r, key, value) } done <- struct{}{}