@@ -186,12 +186,8 @@ public function test_can_switch_between_connections(): void
186186 $ beanstalkdAdapter = $ this ->getAdapter ("beanstalkd " );
187187 $ this ->assertInstanceOf (BeanstalkdAdapter::class, $ beanstalkdAdapter );
188188
189- try {
190- $ redisAdapter = $ this ->getAdapter ("redis " );
191- $ this ->assertInstanceOf (RedisAdapter::class, $ redisAdapter );
192- } catch (\Exception $ e ) {
193- // Redis not available, skip this assertion
194- }
189+ $ redisAdapter = $ this ->getAdapter ("redis " );
190+ $ this ->assertInstanceOf (RedisAdapter::class, $ redisAdapter );
195191 }
196192
197193 public function test_connection_returns_same_instance_for_same_adapter (): void
@@ -217,11 +213,6 @@ public function test_can_get_current_connection_name(): void
217213 */
218214 public function test_push_service_adapter (string $ connection ): void
219215 {
220- // Skip database adapter due to UUID collision bug
221- if ($ connection === 'database ' ) {
222- $ this ->markTestSkipped ('Skipped: Str::uuid() generates duplicate UUIDs causing PRIMARY KEY violations ' );
223- }
224-
225216 $ adapter = $ this ->getAdapter ($ connection );
226217 $ filename = $ this ->getProducerFilePath ($ connection );
227218
@@ -258,11 +249,6 @@ public function test_push_service_adapter(string $connection): void
258249 */
259250 public function test_push_service_adapter_with_model (string $ connection ): void
260251 {
261- // Skip database adapter due to UUID collision bug
262- if ($ connection === 'database ' ) {
263- $ this ->markTestSkipped ('Skipped: Str::uuid() generates duplicate UUIDs causing PRIMARY KEY violations ' );
264- }
265-
266252 // Recreate table to reset auto-increment and avoid test pollution
267253 $ this ->recreatePetsTable ();
268254
@@ -767,6 +753,7 @@ public function test_sync_adapter_executes_without_delay(): void
767753
768754 $ startTime = microtime (true );
769755 $ producer = $ this ->createBasicJob ("sync " );
756+ $ producer ->setDelay (0 );
770757 $ adapter ->push ($ producer );
771758 $ endTime = microtime (true );
772759
0 commit comments