Lines Matching refs:ret
35 ret := fmt.Sprintf("https://testserver.com/issues/%s", pkg)
36 logrus.Infof("LastIssue: mock implementation returns %s", ret)
37 return ret, nil
41 var ret = []string{"step1", "step2", "step3"}
42 for i := range ret {
43 ret[i] = fmt.Sprintf("%s-%s-%s", from, to, ret[i])
45 logrus.Infof("Steps: mock implementation returns %v", ret)
46 return ret, nil
50 ret := fmt.Sprintf("pkg%d", m.pkgCount)
53 logrus.Infof("GetNewer: mock implementation returns %s", ret)
54 return ret, nil