Fix variadic arguments

This commit is contained in:
Ian Tan 2017-11-18 21:23:55 +08:00
parent 6a1b81b18b
commit 8c06f3ff4f

View File

@ -117,7 +117,7 @@ func (h *Expecter) AssertExpectations() error {
// First triggers a Query
func (h *Expecter) First(out interface{}, where ...interface{}) ExpectedQuery {
h.gorm.First(out)
h.gorm.First(out, where...)
return h.adapter.ExpectQuery(regexp.QuoteMeta(h.recorder.stmt))
}