summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/retry_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/retry_test.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/retry_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/retry_test.go b/vendor/gopkg.in/olivere/elastic.v5/retry_test.go
index 14ebbb835..804313095 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/retry_test.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/retry_test.go
@@ -21,14 +21,14 @@ func TestRetry(t *testing.T) {
// This function is successfull on "successOn" calls.
f := func() error {
i++
- t.Logf("function is called %d. time\n", i)
+ // t.Logf("function is called %d. time\n", i)
if i == successOn {
- t.Log("OK")
+ // t.Log("OK")
return nil
}
- t.Log("error")
+ // t.Log("error")
return errors.New("error")
}