map default namespace try

This commit is contained in:
Bel LaPointe
2019-11-12 13:38:20 -07:00
parent f807cc71b2
commit 283c2dffd2
17 changed files with 10 additions and 22 deletions

18
db_test.go Normal file → Executable file
View File

@@ -94,24 +94,6 @@ func TestImplementations(t *testing.T) {
cases = append(cases, leveldb)
}
riakLN, err := net.Listen("tcp", "localhost:8087")
if err == nil {
defer riakLN.Close()
go func() {
for {
conn, err := riakLN.Accept()
if err == nil {
conn.Close()
}
}
}()
}
if riak, err := NewRiak("localhost:8087"); err != nil {
t.Logf("cannot make riak: %v", err)
} else {
cases = append(cases, riak)
}
mongoLN, err := net.Listen("tcp", "localhost:27017")
if err == nil {
defer mongoLN.Close()