aboutsummaryrefslogtreecommitdiffstats
path: root/ethdb/database_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethdb/database_test.go')
-rw-r--r--ethdb/database_test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/ethdb/database_test.go b/ethdb/database_test.go
index 5e4a3ca34..2deb50988 100644
--- a/ethdb/database_test.go
+++ b/ethdb/database_test.go
@@ -53,8 +53,7 @@ func TestLDB_PutGet(t *testing.T) {
}
func TestMemoryDB_PutGet(t *testing.T) {
- db, _ := ethdb.NewMemDatabase()
- testPutGet(db, t)
+ testPutGet(ethdb.NewMemDatabase(), t)
}
func testPutGet(db ethdb.Database, t *testing.T) {
@@ -131,8 +130,7 @@ func TestLDB_ParallelPutGet(t *testing.T) {
}
func TestMemoryDB_ParallelPutGet(t *testing.T) {
- db, _ := ethdb.NewMemDatabase()
- testParallelPutGet(db, t)
+ testParallelPutGet(ethdb.NewMemDatabase(), t)
}
func testParallelPutGet(db ethdb.Database, t *testing.T) {