add support for Go 1.17 Beta 1

This commit is contained in:
Marten Seemann
2021-06-14 18:32:12 -07:00
parent e36795e066
commit 7c74d1eb47
8 changed files with 9 additions and 9 deletions

View File

@@ -49,7 +49,7 @@ var _ = Describe("Closed local session", func() {
})
It("destroys sessions", func() {
Expect(areClosedSessionsRunning()).To(BeTrue())
Eventually(areClosedSessionsRunning).Should(BeTrue())
sess.destroy(errors.New("destroy"))
Eventually(areClosedSessionsRunning).Should(BeFalse())
})