Skip to content

Commit

Permalink
followup
Browse files Browse the repository at this point in the history
  • Loading branch information
georgringer committed Jul 7, 2024
1 parent 73769d3 commit 21ac438
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions Build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Build/php-cs-fixer/.php-cs-fixer.cache
1 change: 0 additions & 1 deletion Build/php-cs-fixer/.php-cs-fixer.cache

This file was deleted.

4 changes: 2 additions & 2 deletions Tests/Unit/Service/GeocodeServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class GeocodeServiceTest extends BaseTestCase
*/
public function validAPiResultIsReturned()
{
$this->markTestSkipped('Migrate prophesizy away');
self::markTestSkipped('Migrate prophesizy away');
$content = ['status' => 200, 'CONTENT' => 123];
$stream = $this->prophesize(StreamInterface::class);
$stream->getContents()->willReturn(json_encode($content));
Expand All @@ -40,7 +40,7 @@ public function validAPiResultIsReturned()
*/
public function invalidAPiResultReturnsEmptyArray()
{
$this->markTestSkipped('Migrate prophesizy away');
self::markTestSkipped('Migrate prophesizy away');
$content = ['status' => 'OVER_QUERY_LIMIT', 'CONTENT' => 123];
$stream = $this->prophesize(StreamInterface::class);
$stream->getContents()->willReturn(json_encode($content));
Expand Down
2 changes: 1 addition & 1 deletion Tests/Unit/ViewHelpers/RemoveSpacesViewHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ protected function setUp(): void
*/
public function spacelessVhIsCalled()
{
$this->markTestSkipped('Migrate prophesizy away');
self::markTestSkipped('Migrate prophesizy away');
$actualResult = $this->viewHelper->renderStatic(
['value' => ' +43 123 56 34 34 '],
function () {},
Expand Down

0 comments on commit 21ac438

Please sign in to comment.