Skip to content

Commit c59a4d2

Browse files
jderussenicolas-grekas
authored andcommitted
Rename ForwardCompatTestTrait
1 parent ba6fcfd commit c59a4d2

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/CachePoolTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
use PHPUnit\Framework\TestCase;
1515
use Psr\Cache\CacheItemInterface;
1616
use Psr\Cache\CacheItemPoolInterface;
17-
use Symfony\Bridge\PhpUnit\ForwardCompatTestTrait;
17+
use Symfony\Bridge\PhpUnit\SetUpTearDownTrait;
1818

1919
abstract class CachePoolTest extends TestCase
2020
{
21-
use ForwardCompatTestTrait;
21+
use SetUpTearDownTrait;
2222

2323
/**
2424
* @type array with functionName => reason.

src/HierarchicalCachePoolTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use Psr\Cache\CacheItemPoolInterface;
16-
use Symfony\Bridge\PhpUnit\ForwardCompatTestTrait;
16+
use Symfony\Bridge\PhpUnit\SetUpTearDownTrait;
1717

1818
/**
1919
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
2020
*/
2121
abstract class HierarchicalCachePoolTest extends TestCase
2222
{
23-
use ForwardCompatTestTrait;
23+
use SetUpTearDownTrait;
2424

2525
/**
2626
* @type array with functionName => reason.

src/SimpleCacheTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use Psr\SimpleCache\CacheInterface;
16-
use Symfony\Bridge\PhpUnit\ForwardCompatTestTrait;
16+
use Symfony\Bridge\PhpUnit\SetUpTearDownTrait;
1717

1818
abstract class SimpleCacheTest extends TestCase
1919
{
20-
use ForwardCompatTestTrait;
20+
use SetUpTearDownTrait;
2121

2222
/**
2323
* @type array with functionName => reason.

src/TaggableCachePoolTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313

1414
use Cache\TagInterop\TaggableCacheItemPoolInterface;
1515
use PHPUnit\Framework\TestCase;
16-
use Symfony\Bridge\PhpUnit\ForwardCompatTestTrait;
16+
use Symfony\Bridge\PhpUnit\SetUpTearDownTrait;
1717

1818
/**
1919
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
2020
*/
2121
abstract class TaggableCachePoolTest extends TestCase
2222
{
23-
use ForwardCompatTestTrait;
23+
use SetUpTearDownTrait;
2424

2525
/**
2626
* @type array with functionName => reason.

0 commit comments

Comments
 (0)