@@ -591,7 +591,7 @@ async fn state_is_being_cleaned_properly_and_pending_request_calculated_properly
591
591
592
592
#[ tokio:: test]
593
593
async fn resolve_on_qos0_before_write_to_tcp_buffer ( ) {
594
- let options = MqttOptions :: new ( "dummy" , "127.0.0.1" , 3004 ) ;
594
+ let options = MqttOptions :: new ( "dummy" , "127.0.0.1" , 3005 ) ;
595
595
let ( client, mut eventloop) = AsyncClient :: new ( options, 5 ) ;
596
596
597
597
task:: spawn ( async move {
@@ -609,7 +609,7 @@ async fn resolve_on_qos0_before_write_to_tcp_buffer() {
609
609
}
610
610
} ) ;
611
611
612
- let mut broker = Broker :: new ( 3004 , 0 , false ) . await ;
612
+ let mut broker = Broker :: new ( 3005 , 0 , false ) . await ;
613
613
614
614
let token = client
615
615
. publish ( "hello/world" , QoS :: AtMostOnce , false , [ 1 ; 1 ] )
@@ -645,7 +645,7 @@ async fn resolve_on_qos0_before_write_to_tcp_buffer() {
645
645
646
646
#[ tokio:: test]
647
647
async fn resolve_on_qos1_ack_from_broker ( ) {
648
- let options = MqttOptions :: new ( "dummy" , "127.0.0.1" , 3004 ) ;
648
+ let options = MqttOptions :: new ( "dummy" , "127.0.0.1" , 3006 ) ;
649
649
let ( client, mut eventloop) = AsyncClient :: new ( options, 5 ) ;
650
650
651
651
task:: spawn ( async move {
@@ -663,7 +663,7 @@ async fn resolve_on_qos1_ack_from_broker() {
663
663
}
664
664
} ) ;
665
665
666
- let mut broker = Broker :: new ( 3004 , 0 , false ) . await ;
666
+ let mut broker = Broker :: new ( 3006 , 0 , false ) . await ;
667
667
668
668
let mut token = client
669
669
. publish ( "hello/world" , QoS :: AtLeastOnce , false , [ 1 ; 1 ] )
@@ -710,7 +710,7 @@ async fn resolve_on_qos1_ack_from_broker() {
710
710
711
711
#[ tokio:: test]
712
712
async fn resolve_on_qos2_ack_from_broker ( ) {
713
- let options = MqttOptions :: new ( "dummy" , "127.0.0.1" , 3004 ) ;
713
+ let options = MqttOptions :: new ( "dummy" , "127.0.0.1" , 3007 ) ;
714
714
let ( client, mut eventloop) = AsyncClient :: new ( options, 5 ) ;
715
715
716
716
task:: spawn ( async move {
@@ -728,7 +728,7 @@ async fn resolve_on_qos2_ack_from_broker() {
728
728
}
729
729
} ) ;
730
730
731
- let mut broker = Broker :: new ( 3004 , 0 , false ) . await ;
731
+ let mut broker = Broker :: new ( 3007 , 0 , false ) . await ;
732
732
733
733
let mut token = client
734
734
. publish ( "hello/world" , QoS :: ExactlyOnce , false , [ 1 ; 1 ] )
0 commit comments