aboutsummaryrefslogtreecommitdiff
path: root/ldap_test.go
diff options
context:
space:
mode:
authortmfkams <[email protected]>2014-02-02 19:00:45 +0100
committerSamuel Stauffer <[email protected]>2014-03-19 13:57:59 -0700
commit16e1575c86d09a0495b994341e9541a9fdfc6761 (patch)
treec3f1d00c0521f9857a3e81932ae10868b5596b3d /ldap_test.go
parentfc33496b492e77008f1dd56637a58a9db50d0404 (diff)
refactoring, redesigned connection/message handling
Diffstat (limited to 'ldap_test.go')
-rw-r--r--ldap_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/ldap_test.go b/ldap_test.go
index f21a8a6..00cc7d5 100644
--- a/ldap_test.go
+++ b/ldap_test.go
@@ -90,13 +90,11 @@ func testMultiGoroutineSearch(t *testing.T, l *Conn, results chan *SearchResult,
attributes,
nil)
sr, err := l.Search(search_request)
-
if err != nil {
t.Errorf(err.String())
results <- nil
return
}
-
results <- sr
}