Skip to content

Commit

Permalink
Rename abstract test class to prevent phpunit warning
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Oct 31, 2023
1 parent b7857b7 commit e029f32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @internal
*/
class ReportTransactionTest extends \MaxMind\Test\MinFraud\ServiceClientTest
class ReportTransactionTest extends \MaxMind\Test\MinFraud\ServiceClientTester
{
public function testMinimalRequest(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* @coversNothing
*/
abstract class ServiceClientTest extends TestCase
abstract class ServiceClientTester extends TestCase
{
protected function createRequest(
string $class,
Expand Down
2 changes: 1 addition & 1 deletion tests/MaxMind/Test/MinFraudTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @internal
*/
class MinFraudTest extends \MaxMind\Test\MinFraud\ServiceClientTest
class MinFraudTest extends \MaxMind\Test\MinFraud\ServiceClientTester
{
/**
* @dataProvider services
Expand Down

0 comments on commit e029f32

Please sign in to comment.