Skip to content

Commit

Permalink
Merge pull request #881 from cakephp/saeideng-patch-1
Browse files Browse the repository at this point in the history
replace IntegrationTestCase with TestCase
  • Loading branch information
othercorey authored Jan 16, 2022
2 parents 14afeee + 761e18a commit 9e70b7c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/TestCase/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@
use Cake\Http\MiddlewareQueue;
use Cake\Routing\Middleware\AssetMiddleware;
use Cake\Routing\Middleware\RoutingMiddleware;
use Cake\TestSuite\IntegrationTestCase;
use Cake\TestSuite\IntegrationTestTrait;
use Cake\TestSuite\TestCase;
use InvalidArgumentException;

/**
* ApplicationTest class
*/
class ApplicationTest extends IntegrationTestCase
class ApplicationTest extends TestCase
{
use IntegrationTestTrait;

/**
* testBootstrap
*
Expand Down

0 comments on commit 9e70b7c

Please sign in to comment.