1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-04-01 21:04:25 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,6 +50,11 @@ func StoreTestBlocksStore(t *testing.T, setup func(t *testing.T) (store.Store, f
defer tearDown()
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) {