We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 881efde commit 2cebe8dCopy full SHA for 2cebe8d
docs/index.md
@@ -1221,13 +1221,13 @@ It("panics in a goroutine", func() {
1221
1222
```go
1223
It("panics in a goroutine", func() {
1224
- done := make(chan struct{})
+ c := make(chan struct{})
1225
go func() {
1226
defer GinkgoRecover()
1227
Fail("boom")
1228
close(c)
1229
}()
1230
- Eventually(done).Should(BeClosed())
+ Eventually(c).Should(BeClosed())
1231
})
1232
```
1233
0 commit comments