Skip to content

Commit

Permalink
fix: method name was changed
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jan 4, 2025
1 parent d33b4da commit 291e95c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Service/PdfParseServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function testGetMetadataWithFail(string $path, string $errorMessage): voi
}
$this->getService()
->setFile($file)
->toArray($file);
->getPageDimensions($file);
}

public static function dataGetMetadataWithFail(): array {
Expand All @@ -69,7 +69,7 @@ public function testGetMetadataWithSuccess(string $path, array $expected): void
->willReturn(file_get_contents($path));
$actual = $this->getService()
->setFile($file)
->toArray();
->getPageDimensions();
$this->assertEquals($expected, $actual);
}

Expand Down

0 comments on commit 291e95c

Please sign in to comment.