Completed
Push — master ( 05b722...3814de )
by dan
01:59
created
Tests/ImageProcessing/FocusCropDataCalculatorTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,8 @@
 block discarded – undo
61 61
                 $message = 'Too wide: ' . $focusCropData['width'] . '<=' . $width;
62 62
                 $this->assertTrue($focusCropData['width'] <= $width, $message);
63 63
 
64
-                $message = 'Too high: ' . (int)round($focusCropData['height']) . ' <= ' . $height;
65
-                $this->assertTrue((int)round($focusCropData['height']) <= (int)$height, $message);
64
+                $message = 'Too high: ' . (int) round($focusCropData['height']) . ' <= ' . $height;
65
+                $this->assertTrue((int) round($focusCropData['height']) <= (int) $height, $message);
66 66
 
67 67
                 $this->assertTrue($focusCropData['x'] >= $imageCoordinates['crop_coordinates'][0]); // x1
68 68
                 $this->assertTrue($focusCropData['y'] >= $imageCoordinates['crop_coordinates'][1]); // y1
Please login to merge, or discard this patch.