Fix UT, delete empty file

This commit is contained in:
Till Faelligen 2023-02-01 14:54:19 +01:00
parent f51f5f2143
commit 1af5c7e69a
No known key found for this signature in database
GPG key ID: ACCDC9606D472758
2 changed files with 2 additions and 1 deletions

View file

@ -1 +0,0 @@
package postgres

View file

@ -29,6 +29,8 @@ func mustCreateStateSnapshotTable(t *testing.T, dbType test.DBType) (tab tables.
assert.NoError(t, err)
err = postgres.CreateEventsTable(db)
assert.NoError(t, err)
err = postgres.CreateEventJSONTable(db)
assert.NoError(t, err)
err = postgres.CreateStateBlockTable(db)
assert.NoError(t, err)
// ... and then the snapshot table itself