fix tests

This commit is contained in:
Nuno Maduro
2024-09-05 18:17:30 +01:00
parent 2d80ff19ec
commit ae288d1123
3 changed files with 2 additions and 11 deletions

View File

@ -10,7 +10,6 @@ use Pest\Exceptions\TestDescriptionMissing;
use Pest\Factories\Attribute;
use Pest\Factories\TestCaseMethodFactory;
use Pest\Mutate\Contracts\Configuration;
use Pest\Mutate\Decorators\TestCallDecorator as MutationTestCallDecorator;
use Pest\Mutate\Repositories\ConfigurationRepository;
use Pest\PendingCalls\Concerns\Describable;
use Pest\Plugins\Only;
@ -666,14 +665,6 @@ final class TestCall
return $this;
}
/**
* Mutates the test.
*/
public function mutate(string $profile = 'default'): self|MutationTestCallDecorator
{
return (new MutationTestCallDecorator($this))->mutate($profile);
}
/**
* Creates the Call.
*/