From 39b42bb862153120754ff3467a881c012879bd70 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 12 Mar 2015 14:30:16 -0700 Subject: [PATCH] physical: fix failing test --- physical/inmem_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physical/inmem_test.go b/physical/inmem_test.go index 31423e4c1..fadcf2790 100644 --- a/physical/inmem_test.go +++ b/physical/inmem_test.go @@ -3,7 +3,7 @@ package physical import "testing" func TestInmem(t *testing.T) { - inm := newInmem() + inm := NewInmem() testBackend(t, inm) testBackend_ListPrefix(t, inm) }