diff --git a/tests/Adapters/InMemory/InMemoryTimingTest.php b/tests/Adapters/InMemory/InMemoryTimingTest.php index 8c8d38e..20ee497 100644 --- a/tests/Adapters/InMemory/InMemoryTimingTest.php +++ b/tests/Adapters/InMemory/InMemoryTimingTest.php @@ -12,6 +12,7 @@ use DateTimeImmutable; use PHPUnit\Framework\Attributes\DataProviderExternal; use PHPUnit\Framework\Attributes\Test; +use UnitEnum; class InMemoryTimingTest extends BaseTestCase { @@ -81,7 +82,7 @@ public function withDefaultTags_mergesTags(): void } #[Test] - public function time_storesDurationOfClosure(): void + public function time_recordsDurationOfClosure(): void { // Given $inMemoryClient = new InMemoryClientAdapter( @@ -107,7 +108,7 @@ public function time_storesDurationOfClosure(): void #[Test] #[DataProviderExternal(EnumProvider::class, 'differentEnumTypesAndExpectedStringDataProvider')] - public function enumAsStat_recordsStatAsString(\UnitEnum $case, string $converted): void + public function enumAsStat_recordsStatAsString(UnitEnum $case, string $converted): void { // Given $inMemoryClient = new InMemoryClientAdapter();