Commit 7d896243 authored by Kirill Smelkov's avatar Kirill Smelkov

go/zodb: tests: Add a couple of missed t.Helper()

parent c68c0994
...@@ -444,12 +444,14 @@ func (t *tConnection) Abort() { ...@@ -444,12 +444,14 @@ func (t *tConnection) Abort() {
} }
func (t *tDB) fatalif(err error) { func (t *tDB) fatalif(err error) {
t.Helper()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
} }
func (t *tConnection) fatalif(err error) { func (t *tConnection) fatalif(err error) {
t.Helper()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment