Skip to content

Commit

Permalink
fix: phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomiejmarszal committed Oct 21, 2024
1 parent 70781d6 commit 3ad8fc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/unit/model/import/ChecksumGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ public function testGetRangeChecksum(): void
public function testThrowExceptionOnPropertyWithoutRange(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Property propertyUri does not have range set. Only properties with range can have checksum');
$this->expectExceptionMessage(
'Property propertyUri does not have range set. Only properties with range can have checksum'
);
$this->propertyMock->method('getRange')->willReturn(null);
$this->propertyMock->method('getUri')->willReturn('propertyUri');

Expand Down

0 comments on commit 3ad8fc5

Please sign in to comment.