Browse Source

fixed for travis-ci

tags/0.2
mikespook 11 years ago
parent
commit
e7d32edee0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      client/pool_test.go

+ 1
- 1
client/pool_test.go View File

@@ -14,7 +14,7 @@ func TestPoolAdd(t *testing.T) {
if err := pool.Add("127.0.0.1:4730", 1); err != nil {
t.Error(err)
}
if err := pool.Add("127.0.0.2:4730", 1); err != nil {
if err := pool.Add("127.0.0.1:4730", 1); err != nil {
t.Error(err)
}
if len(pool.clients) != 2 {


Loading…
Cancel
Save