mirror of https://github.com/etcd-io/bbolt.git
Remove unreachable test code.
parent
ba4adce39b
commit
f873035fc9
|
@ -274,7 +274,6 @@ func TestDB_Update_Panic(t *testing.T) {
|
||||||
db.Update(func(tx *Tx) error {
|
db.Update(func(tx *Tx) error {
|
||||||
tx.CreateBucket([]byte("widgets"))
|
tx.CreateBucket([]byte("widgets"))
|
||||||
panic("omg")
|
panic("omg")
|
||||||
return nil
|
|
||||||
})
|
})
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
@ -320,7 +319,6 @@ func TestDB_View_Panic(t *testing.T) {
|
||||||
db.View(func(tx *Tx) error {
|
db.View(func(tx *Tx) error {
|
||||||
assert.NotNil(t, tx.Bucket([]byte("widgets")))
|
assert.NotNil(t, tx.Bucket([]byte("widgets")))
|
||||||
panic("omg")
|
panic("omg")
|
||||||
return nil
|
|
||||||
})
|
})
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue