Skip to content

Commit

Permalink
Merge branch 'release/v1.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Invis1ble committed Jun 5, 2024
2 parents ad73296 + 9ef85e6 commit feba0c3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/Normalizer/UriNormalizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,12 @@ public function testDoesNotSupportNormalization(string $fqn): void
$this->assertFalse($this->normalizer->supportsNormalization($uri));
}

#[DataProvider('provideSupportedType')]
public function testGetSupportedTypes(string $fqn): void
public function testGetSupportedTypes(): void
{
$supportedTypes = $this->normalizer->getSupportedTypes(null);

$this->assertArrayHasKey($fqn, $supportedTypes);
$this->assertTrue($supportedTypes[$fqn]);
$this->assertArrayHasKey(UriInterface::class, $supportedTypes);
$this->assertTrue($supportedTypes[UriInterface::class]);
}

#[DataProvider('provideSupportedType')]
Expand Down

0 comments on commit feba0c3

Please sign in to comment.