Codebase list golang-gomega / 61cd3b8
Fix typo (#477) checkmunza authored 2 years ago GitHub committed 2 years ago
1 changed file(s) with 4 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
3838 return g
3939 }
4040
41 func (g *Gomega) Ω(atual interface{}, extra ...interface{}) types.Assertion {
42 return g.ExpectWithOffset(0, atual, extra...)
41 func (g *Gomega) Ω(actual interface{}, extra ...interface{}) types.Assertion {
42 return g.ExpectWithOffset(0, actual, extra...)
4343 }
4444
45 func (g *Gomega) Expect(atual interface{}, extra ...interface{}) types.Assertion {
46 return g.ExpectWithOffset(0, atual, extra...)
45 func (g *Gomega) Expect(actual interface{}, extra ...interface{}) types.Assertion {
46 return g.ExpectWithOffset(0, actual, extra...)
4747 }
4848
4949 func (g *Gomega) ExpectWithOffset(offset int, actual interface{}, extra ...interface{}) types.Assertion {