1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-07-12 23:50:27 +02:00

Added missed test (#695)

* Fixed missing errors

* Used missed test
This commit is contained in:
Harshil Sharma
2021-07-09 10:06:50 +05:30
committed by GitHub
parent e0ccfb90e7
commit 74cf28fee5

View File

@ -50,6 +50,11 @@ func StoreTestBlocksStore(t *testing.T, setup func(t *testing.T) (store.Store, f
defer tearDown() defer tearDown()
testGetBlocks(t, store, container) testGetBlocks(t, store, container)
}) })
t.Run("GetBlock", func(t *testing.T) {
store, tearDown := setup(t)
defer tearDown()
testGetBlock(t, store, container)
})
} }
func testInsertBlock(t *testing.T, store store.Store, container store.Container) { func testInsertBlock(t *testing.T, store store.Store, container store.Container) {