mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 22:23:11 +00:00
The certifier package is renamed to light. This is more descriptive especially in the wider blockchain context. Moreover we are building light-clients using the light package. This also adds godocs to all exported functions. Furthermore it introduces some extra error handling. I've added one TODO where I would like someone else's opinion on how to handle the error.
19 lines
325 B
Go
19 lines
325 B
Go
package errors
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestErrorHeight(t *testing.T) {
|
|
e1 := ErrHeightMismatch(2, 3)
|
|
e1.Error()
|
|
assert.True(t, IsHeightMismatchErr(e1))
|
|
|
|
e2 := errors.New("foobar")
|
|
assert.False(t, IsHeightMismatchErr(e2))
|
|
assert.False(t, IsHeightMismatchErr(nil))
|
|
}
|