aeea7628d6
Logging in the backend is a good thing. This is a noisy interface change but should be a functional noop.
14 lines
193 B
Go
14 lines
193 B
Go
package physical
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestInmemHA(t *testing.T) {
|
|
logger := log.New(os.Stderr, "", log.LstdFlags)
|
|
inm := NewInmemHA(logger)
|
|
testHABackend(t, inm, inm)
|
|
}
|