浏览代码

last try at examples

Dan Frank 12 年之前
父节点
当前提交
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)
 }