Skip to content
Snippets Groups Projects
defered_errcheck.go 200 B
Newer Older
package testutils

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

// DeferedErrCheck ...
func DeferedErrCheck(tb testing.TB, cb func() error) {
Axel Prel's avatar
Axel Prel committed
	tb.Helper()
	assert.NoError(tb, cb())
}