Skip to content

Commit bde8982

Browse files
committed
Fix assert
1 parent cc787eb commit bde8982

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
func TestNewConfig_ConfigNotFound(t *testing.T) {
1111
_, err := NewConfig(map[string]interface{}{})
12-
assert.Error(t, err, "configuration not found")
12+
assert.EqualError(t, err, "configuration not found")
1313
}
1414

1515
func TestNewConfig_DecodeOK(t *testing.T) {

0 commit comments

Comments
 (0)