migueleliasweb / go-github-mock

A library to aid unittesting code that uses Golang's Github SDK
MIT License
94 stars 22 forks source link

Data Race on mock.FIFOResponseHandler.CurrentIndex #28

Closed mheck136 closed 1 year ago

mheck136 commented 2 years ago

Due to the fact that the http server will use a new goroutine for each request, multiple goroutines access the CurrentIndex field of the FIFOResponseHandler. When running tests with the -race flag, this can lead to 'WARNING: DATA RACE' situations.