Dan Frank 12 лет назад
Родитель
Сommit
e86055f813
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      example_test.go

+ 3 - 3
example_test.go

@@ -1,13 +1,13 @@
-package hostpool_test
+package hostpool
 
 import (
 	"github.com/bitly/go-hostpool"
 )
 
-func Example_epsilon_greedy() {
+func ExampleNewEpsilonGreedy() {
 	hp := hostpool.NewEpsilonGreedy([]string{"a", "b"}, 0, &hostpool.LinearEpsilonValueCalculator{})
 	hostResponse := hp.Get()
 	hostname := hostResponse.Host()
-	err := _ // (make a request with hostname)
+	err := nil // (make a request with hostname)
 	hostResponse.Mark(err)
 }