fix tests

This commit is contained in:
Fabio Ivona
2021-11-26 16:15:36 +01:00
parent 7fd9cfa2e9
commit 8494d4566a
2 changed files with 4 additions and 20 deletions

View File

@ -1,18 +0,0 @@
<?php
declare(strict_types=1);
namespace Pest\Exceptions;
use InvalidArgumentException;
/**
* @internal
*/
final class ExpectationNotFoundException extends InvalidArgumentException
{
public function __construct(string $expectationName)
{
parent::__construct(sprintf('Impossible to find [%s] expectation', $expectationName));
}
}