tests: Rename corruptHash to CorruptBBolt

Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
This commit is contained in:
Marek Siarkowicz 2022-07-25 12:26:47 +02:00
parent 037a898ba0
commit a8020a0320

View File

@ -43,7 +43,7 @@ func TestEtcdCorruptHash(t *testing.T) {
testCtl(t, corruptTest, withQuorum(),
withCfg(*cfg),
withInitialCorruptCheck(),
withCorruptFunc(corruptHash),
withCorruptFunc(CorruptBBolt),
)
}
@ -98,7 +98,7 @@ func corruptTest(cx ctlCtx) {
waitReadyExpectProc(proc, []string{fmt.Sprintf("etcdmain: %016x found data inconsistency with peers", id0)})
}
func corruptHash(fpath string) error {
func CorruptBBolt(fpath string) error {
db, derr := bolt.Open(fpath, os.ModePerm, &bolt.Options{})
if derr != nil {
return derr