Skip to content

Commit

Permalink
fix: Removes no longer present "values" property in field error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zakharchenko committed Aug 2, 2019
1 parent 9f9dd2c commit c3e7316
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ Both expected and actual HTTP messages (no matter request or response) inherit f

```ts
interface HttpMessage {
uri?: string;
method?: string;
statusCode?: number;
headers?: Record<string> | string;
Expand Down Expand Up @@ -234,10 +235,6 @@ interface FieldError {
pointer?: string
property?: string[]
}
values?: {
expected: any
actual: any
}
}
```

Expand Down

0 comments on commit c3e7316

Please sign in to comment.