@@ -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)
}