File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public static function provideDSN()
85
85
{
86
86
yield ['null: ' , NullConnectionFactory::class];
87
87
88
- yield ['amqp: ' , AmqpExtConnectionFactory ::class];
88
+ yield ['amqp: ' , AmqpBunnyConnectionFactory ::class];
89
89
90
90
yield ['amqp+ext: ' , AmqpExtConnectionFactory::class];
91
91
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ public function testShouldCreateAmqpExtFromConfigWithoutDriverAndDsn()
369
369
{
370
370
$ factory = AmqpTransportFactory::createConnectionFactoryFactory (['host ' => 'aHost ' ]);
371
371
372
- $ this ->assertInstanceOf (\Enqueue \AmqpExt \AmqpConnectionFactory::class, $ factory );
372
+ $ this ->assertInstanceOf (\Enqueue \AmqpBunny \AmqpConnectionFactory::class, $ factory );
373
373
}
374
374
375
375
public function testThrowIfInvalidDriverGiven ()
@@ -380,11 +380,11 @@ public function testThrowIfInvalidDriverGiven()
380
380
AmqpTransportFactory::createConnectionFactoryFactory (['driver ' => 'invalidDriver ' ]);
381
381
}
382
382
383
- public function testShouldCreateAmqpExtFromDsn ()
383
+ public function testShouldCreateAmqpBunnyFromDsn ()
384
384
{
385
385
$ factory = AmqpTransportFactory::createConnectionFactoryFactory (['dsn ' => 'amqp: ' ]);
386
386
387
- $ this ->assertInstanceOf (\Enqueue \AmqpExt \AmqpConnectionFactory::class, $ factory );
387
+ $ this ->assertInstanceOf (\Enqueue \AmqpBunny \AmqpConnectionFactory::class, $ factory );
388
388
}
389
389
390
390
public function testShouldCreateAmqpBunnyFromDsnWithDriver ()
You can’t perform that action at this time.
0 commit comments