Skip to content

Commit

Permalink
Assertion fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cv65kr committed Nov 7, 2023
1 parent 16a7474 commit db72ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ func TestErrorWhenIncludedConfigHaveDifferentVersionThenRoot(t *testing.T) {

err := p.Init()
require.Error(t, err)
assert.EqualError(t, err, "config_plugin_init: version in included file must be the same like in root")
assert.Contains(t, err.Error(), "config_plugin_init: version in included file must be the same like in root")
}

0 comments on commit db72ce9

Please sign in to comment.