diff --git a/tests/src/JsonPatchTest.php b/tests/src/JsonPatchTest.php index fa4ac7b..1732377 100644 --- a/tests/src/JsonPatchTest.php +++ b/tests/src/JsonPatchTest.php @@ -137,7 +137,7 @@ public function provideInvalidFieldType() { return [ '"op" invalid type' => [ - (object)array('op' => array('foo' => 'bar'), 'path' => '/123', 'value' => 'test'), + (object)array('op' => true, 'path' => '/123', 'value' => 'test'), 'Invalid field type - "op" should be of type: string', 'op', 'string'