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 4977877730
commit 99b982e71a

View File

@ -44,7 +44,7 @@ func TestEtcdCorruptHash(t *testing.T) {
testCtl(t, corruptTest, withQuorum(),
withCfg(*cfg),
withInitialCorruptCheck(),
withCorruptFunc(corruptHash),
withCorruptFunc(CorruptBBolt),
)
}
@ -99,7 +99,7 @@ func corruptTest(cx ctlCtx) {
e2e.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