@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * @return $this |
| 47 | 47 | */ |
| 48 | 48 | public function describe(string $scenario): TestGuy { |
| 49 | - $this->steps->add('I describe ' . $scenario); |
|
| 49 | + $this->steps->add('I describe '.$scenario); |
|
| 50 | 50 | return $this; |
| 51 | 51 | } |
| 52 | 52 | |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * @return $this |
| 61 | 61 | */ |
| 62 | 62 | public function expectThat(string $expectation): TestGuy { |
| 63 | - $this->steps->add('I expect that ' . $expectation); |
|
| 63 | + $this->steps->add('I expect that '.$expectation); |
|
| 64 | 64 | |
| 65 | 65 | return $this; |
| 66 | 66 | } |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * @return $this |
| 79 | 79 | */ |
| 80 | 80 | public function verifyThat(string $expectation, callable $verificationSteps = null): TestGuy { |
| 81 | - $this->steps->add('I verify that ' . $expectation); |
|
| 81 | + $this->steps->add('I verify that '.$expectation); |
|
| 82 | 82 | if ($verificationSteps) { |
| 83 | 83 | $verificationSteps($this); |
| 84 | 84 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | * @return $this |
| 37 | 37 | */ |
| 38 | 38 | public function expectTo(string $expectation): TestGuy { |
| 39 | - $this->steps->add('I expect to ' . $expectation); |
|
| 39 | + $this->steps->add('I expect to '.$expectation); |
|
| 40 | 40 | return $this; |
| 41 | 41 | } |
| 42 | 42 | |