Completed
Pull Request — master (#205)
by Kevin
06:15
created
lib/Assertions/LoggingAssertionExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         }
35 35
         try {
36 36
             $assertion->assert();
37
-            $this->logger->logAssertionSuccess( $assertion, $extra );
37
+            $this->logger->logAssertionSuccess($assertion, $extra);
38 38
         } catch (\Exception $e) {
39 39
             $this->logger->logAssertionFailure($e, $assertion, $extra);
40 40
             $this->testCase->fail($e->getMessage());
Please login to merge, or discard this patch.
lib/TestCase/Configurable/Interpolator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function interpolate($string)
24 24
     {
25
-        $this->logger->info('Interpolating string: ' . $string);
25
+        $this->logger->info('Interpolating string: '.$string);
26 26
         $matches = null;
27 27
         // Finding {{$product->setEntityId(123)->load()}} type methods
28 28
         if (preg_match('/\{\{(?:\$)([^{]+)\}\}/', $string, $matches)) {
Please login to merge, or discard this patch.