Skip to content

Commit 61cd3b8

Browse files
authored
Fix typo (#477)
1 parent bf93408 commit 61cd3b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

internal/gomega.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ func (g *Gomega) ConfigureWithT(t types.GomegaTestingT) *Gomega {
3939
return g
4040
}
4141

42-
func (g *Gomega) Ω(atual interface{}, extra ...interface{}) types.Assertion {
43-
return g.ExpectWithOffset(0, atual, extra...)
42+
func (g *Gomega) Ω(actual interface{}, extra ...interface{}) types.Assertion {
43+
return g.ExpectWithOffset(0, actual, extra...)
4444
}
4545

46-
func (g *Gomega) Expect(atual interface{}, extra ...interface{}) types.Assertion {
47-
return g.ExpectWithOffset(0, atual, extra...)
46+
func (g *Gomega) Expect(actual interface{}, extra ...interface{}) types.Assertion {
47+
return g.ExpectWithOffset(0, actual, extra...)
4848
}
4949

5050
func (g *Gomega) ExpectWithOffset(offset int, actual interface{}, extra ...interface{}) types.Assertion {

0 commit comments

Comments
 (0)