Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed Nov 10, 2023
1 parent 9d73dcf commit a628543
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/Request/ServerRequestFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function testPrepareUri($servers, $headers, $expected)
*
* @return array
*/
public function prepareUriProvider(): array
public static function prepareUriProvider(): array
{
return [
'#apache-normal' => [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @since 2.1
*/
abstract class AbstractTransportTest extends TestCase
abstract class AbstractTransportTestCase extends TestCase
{
use BaseAssertionTrait;

Expand Down
2 changes: 1 addition & 1 deletion test/Transport/CurlTransportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @since 2.1
*/
class CurlTransportTest extends AbstractTransportTest
class CurlTransportTest extends AbstractTransportTestCase
{
/**
* Property options.
Expand Down
2 changes: 1 addition & 1 deletion test/Transport/StreamTransportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @since 2.1
*/
class StreamTransportTest extends AbstractTransportTest
class StreamTransportTest extends AbstractTransportTestCase
{
/**
* Property options.
Expand Down

0 comments on commit a628543

Please sign in to comment.