Skip to content

Commit

Permalink
err check
Browse files Browse the repository at this point in the history
  • Loading branch information
reinkrul committed Dec 11, 2023
1 parent 5c58bd1 commit f36817c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vcr/pe/presentation_definition_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,9 @@ func TestPresentationDefinition_ResolveConstraintsFields(t *testing.T) {
"any_credential": jwtCredential,
}

fieldValues, _ := definition.ResolveConstraintsFields(credentialMap)
fieldValues, err := definition.ResolveConstraintsFields(credentialMap)

require.NoError(t, err)
assert.Empty(t, fieldValues)
})
}
Expand Down

0 comments on commit f36817c

Please sign in to comment.