rename message key to failureMessage

This commit is contained in:
Fabio Ivona
2022-09-19 10:37:37 +02:00
parent 8a3caa5e7f
commit bac941715a
3 changed files with 119 additions and 119 deletions

View File

@ -18,7 +18,7 @@ test('failures', function () use ($obj) {
})->throws(ExpectationFailedException::class);
test('failures with message', function () use ($obj) {
expect($obj)->toHaveProperty(name: 'bar', message: 'oh no!');
expect($obj)->toHaveProperty(name: 'bar', failureMessage: 'oh no!');
})->throws(ExpectationFailedException::class, 'oh no!');
test('not failures', function () use ($obj) {