Skip to content

Commit af391d6

Browse files
1 parent b922df8 commit af391d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Functional/Command/ClearCommandTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function testExecuteClearVerbose()
2424
$mock->shouldReceive('supports')
2525
->with(CacheInvalidator::CLEAR)
2626
->andReturnTrue();
27-
;
27+
2828
$mock->shouldReceive('clearCache')
2929
->once()
3030
;
@@ -50,7 +50,7 @@ public function testExecuteBanVerbose()
5050
$mock->shouldReceive('supports')
5151
->with(CacheInvalidator::INVALIDATE)
5252
->andReturnTrue();
53-
;
53+
5454
$mock->shouldReceive('invalidateRegex')
5555
->with('.*')
5656
->once()
@@ -77,7 +77,7 @@ public function testExecuteErrorVerbose()
7777
$mock->shouldReceive('supports')
7878
->with(CacheInvalidator::INVALIDATE)
7979
->andReturnFalse();
80-
;
80+
8181
$mock->shouldReceive('flush')
8282
->once()
8383
->andReturn(0)
@@ -86,6 +86,6 @@ public function testExecuteErrorVerbose()
8686

8787
$output = $this->runCommand($client, 'fos:httpcache:clear', 1);
8888

89-
$this->assertStringContainsString("The configured http cache does not support \"clear\" or \"invalidate\".", $output);
89+
$this->assertStringContainsString('The configured http cache does not support "clear" or "invalidate".', $output);
9090
}
9191
}

0 commit comments

Comments
 (0)