diff --git a/tests/Unit/TesseractTest.php b/tests/Unit/TesseractTest.php index cc7e38f..7f138dc 100644 --- a/tests/Unit/TesseractTest.php +++ b/tests/Unit/TesseractTest.php @@ -107,7 +107,10 @@ public function testRecognizeWithMisConfiguredDPI(): void $tesseract->recognize(__DIR__ . "/Data/paragraph1.png", dpi: 20); # out of range - lower $tesseract->recognize(__DIR__ . "/Data/paragraph1.png", dpi: 5000); # out of range - higher - $tesseract->recognize(__DIR__ . "/Data/paragraph1.png", dpi: 90); # in range but less than the estimated dpi of the input image + $tesseract->recognize( + __DIR__ . "/Data/paragraph1.png", + dpi: 90 + ); # in range but less than the estimated dpi of the input image } /**