uncomment testcase

This commit is contained in:
Arpit Temani 2023-10-09 15:26:45 +05:30
parent 6dd5bf7334
commit fc3d0e778a

View file

@ -47,24 +47,13 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
) )
// nolint : paralleltest
func TestGenerateBlockAndImportEthash(t *testing.T) {
// TODO - Arpit, Check this
t.Skip()
testGenerateBlockAndImport(t, false, false)
}
// nolint : paralleltest // nolint : paralleltest
func TestGenerateBlockAndImportClique(t *testing.T) { func TestGenerateBlockAndImportClique(t *testing.T) {
// TODO - Arpit, Check this
t.Skip()
testGenerateBlockAndImport(t, true, false) testGenerateBlockAndImport(t, true, false)
} }
// nolint : paralleltest // nolint : paralleltest
func TestGenerateBlockAndImportBor(t *testing.T) { func TestGenerateBlockAndImportBor(t *testing.T) {
// TODO - Arpit, Check this
t.Skip()
testGenerateBlockAndImport(t, false, true) testGenerateBlockAndImport(t, false, true)
} }