From 4998c3ad77c661a978cf08ac788e5acdaa0755ff Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Thu, 5 Aug 2021 13:36:13 -0600 Subject: [PATCH] v1.15.0 --- gomega_dsl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gomega_dsl.go b/gomega_dsl.go index fe0132864..6c7f1d9b7 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -279,7 +279,7 @@ When testing complex systems it can be valuable to assert that a _set_ of assert Here's an example that makes some asssertions and returns a value and error: - Eventually(func(g Gomega) (Wiget, error) { + Eventually(func(g Gomega) (Widget, error) { ids, err := client.FetchIDs() g.Expect(err).NotTo(HaveOccurred()) g.Expect(ids).To(ContainElement(1138))