@@ -34,7 +34,7 @@ |
||
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()); |
@@ -22,7 +22,7 @@ |
||
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)) { |