Fix flaky test

This commit is contained in:
Vladimir Mihailenco 2020-09-10 09:19:07 +03:00
parent 655eaaa39d
commit f82e4988ec
1 changed files with 4 additions and 4 deletions

View File

@ -35,8 +35,8 @@ var _ = Describe("Sentinel", func() {
})
AfterEach(func() {
Expect(client.Close()).NotTo(HaveOccurred())
Expect(master.Close()).NotTo(HaveOccurred())
_ = client.Close()
_ = master.Close()
})
It("should facilitate failover", func() {
@ -135,8 +135,8 @@ var _ = Describe("NewFailoverClusterClient", func() {
})
AfterEach(func() {
Expect(client.Close()).NotTo(HaveOccurred())
Expect(master.Close()).NotTo(HaveOccurred())
_ = client.Close()
_ = master.Close()
})
It("should facilitate failover", func() {