Complete first alpha version

This commit is contained in:
Daniel 2018-12-12 19:18:49 +01:00
parent c399d7c748
commit 1ef3ceb274
22 changed files with 299 additions and 159 deletions

View file

@ -98,8 +98,8 @@ func testDatabase(t *testing.T, storageType string) {
for _ = range it.Next {
cnt++
}
if it.Err != nil {
t.Fatal(it.Err)
if it.Err() != nil {
t.Fatal(it.Err())
}
if cnt != 2 {
t.Fatal("expected two records")