Skip to content

Commit

Permalink
test: fix phpunit report warning on ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
inhere committed Dec 5, 2024
1 parent e045fd5 commit 12fb003
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/BaseCliTest.php → test/BaseCliTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

use PHPUnit\Framework\TestCase;

abstract class BaseCliTest extends TestCase
abstract class BaseCliTestCase extends TestCase
{
}
4 changes: 2 additions & 2 deletions test/Util/ClogTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
namespace Toolkit\CliTest\Util;

use Toolkit\Cli\Util\Clog;
use Toolkit\CliTest\BaseCliTest;
use Toolkit\CliTest\BaseCliTestCase;

/**
* class ClogTest
*
* @author inhere
*/
class ClogTest extends BaseCliTest
class ClogTest extends BaseCliTestCase
{
public function testClog_basic(): void
{
Expand Down

0 comments on commit 12fb003

Please sign in to comment.