Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Dec 20, 2024
1 parent 62e3f20 commit 5a1583b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Core/tests/Unit/GrpcRequestWrapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ public function testExceptionMetadata()
'field_violations' => [
new FieldViolation([
'field' => 'foo',
'description' => 'bar'
'description' => 'bar',
'reason' => 'REASON'
])
]
]);
Expand Down
3 changes: 2 additions & 1 deletion Core/tests/Unit/RequestHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ public function testExceptionMetadata()
'field_violations' => [
new FieldViolation([
'field' => 'foo',
'description' => 'bar'
'description' => 'bar',
'reason' => 'REASON',
])
]
]);
Expand Down

0 comments on commit 5a1583b

Please sign in to comment.