Skip to content

Commit

Permalink
Fix Style typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedghanem00 committed May 8, 2024
1 parent fb3c070 commit fa7eb60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/Unit/TesseractTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

/**
Expand Down

0 comments on commit fa7eb60

Please sign in to comment.