Merge pull request #100425 from eltociear/patch-4

test: fix typo in chaosmonkey.go
This commit is contained in:
Kubernetes Prow Robot 2021-04-08 22:09:05 -07:00 committed by GitHub
commit 851e14dc70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ func (cm *Chaosmonkey) Do() {
for _, sem := range sems {
// Wait for test to be ready. We have to wait for ready *or done* because a test
// may panic before signaling that its ready, and we shouldn't block. Since we
// defered sem.done() above, if a test panics, it's marked as done.
// deferred sem.done() above, if a test panics, it's marked as done.
sem.waitForReadyOrDone()
}