You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class CouchbaseBucketAdapterTest extends AdapterTestCase
27
28
{
29
+
use ExpectDeprecationTrait;
30
+
28
31
protected$skippedTests = [
29
32
'testClearPrefix' => 'Couchbase cannot clear by prefix',
30
33
];
31
34
32
-
protectedstatic\CouchbaseBucket$client;
35
+
protected\CouchbaseBucket$client;
33
36
34
-
publicstaticfunctionsetupBeforeClass(): void
37
+
protectedfunctionsetUp(): void
35
38
{
36
-
if (!CouchbaseBucketAdapter::isSupported()) {
37
-
self::markTestSkipped('Couchbase >= 2.6.0 < 3.0.0 is required.');
38
-
}
39
+
$this->expectDeprecation('Since symfony/cache 7.1: The "Symfony\Component\Cache\Adapter\CouchbaseBucketAdapter" class is deprecated, use "Symfony\Component\Cache\Adapter\CouchbaseCollectionAdapter" instead.');
0 commit comments