remove t.Log from test server.Run in memory_store

This commit is contained in:
Dmitry Verkhoturov
2020-04-14 00:20:42 +02:00
parent fab32ace10
commit 828669ac95
@@ -63,7 +63,7 @@ func prepTestStore(t *testing.T) (s *RPC, port int, teardown func()) {
port = chooseRandomUnusedPort()
go func() {
t.Logf("%v", s.Run(port))
_ = s.Run(port)
}()
waitForHTTPServerStart(port)