(ints chan schema.GroupVersionKind, toWrite schema.GroupVersionKind)
| 10 | ) |
| 11 | |
| 12 | func write(ints chan schema.GroupVersionKind, toWrite schema.GroupVersionKind) func() { |
| 13 | return func() { |
| 14 | ints <- toWrite |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | func TestSet_Replace_Race(t *testing.T) { |
| 19 | // CAUTION: This is a race condition test. It should not be flaky. |
no outgoing calls
no test coverage detected
searching dependent graphs…