File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -76,20 +76,14 @@ public function testItSendsAndReceivesMessages()
76
76
$ this ->assertEmpty (iterator_to_array ($ receiver ->get ()));
77
77
}
78
78
79
- /**
80
- * @group legacy
81
- * ^ for now, deprecation errors are thrown during serialization.
82
- */
83
79
public function testRetryAndDelay ()
84
80
{
85
- $ serializer = $ this ->createSerializer ();
86
-
87
81
$ connection = Connection::fromDsn (getenv ('MESSENGER_AMQP_DSN ' ));
88
82
$ connection ->setup ();
89
83
$ connection ->purgeQueues ();
90
84
91
- $ sender = new AmqpSender ($ connection, $ serializer );
92
- $ receiver = new AmqpReceiver ($ connection, $ serializer );
85
+ $ sender = new AmqpSender ($ connection );
86
+ $ receiver = new AmqpReceiver ($ connection );
93
87
94
88
// send a first message
95
89
$ sender ->send ($ first = new Envelope (new DummyMessage ('First ' )));
You can’t perform that action at this time.
0 commit comments