@@ -58,7 +58,6 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
5858 let sessions = await connectionPage . getSessions ( )
5959 assert . equal ( 1 , sessions . sessions . length )
6060 let session = connectionPage . getSessionInfo ( sessions . sessions , 0 )
61- //console.log("session: " + JSON.stringify(session))
6261 assert . equal ( 0 , session . channelNumber )
6362 assert . equal ( 1 , session . nextIncomingId )
6463 assert . equal ( 0 , session . outgoingUnsettledDeliveries )
@@ -70,7 +69,6 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
7069 assert . equal ( 1 , sessions . outgoing_links . length )
7170
7271 let incomingLink = connectionPage . getIncomingLinkInfo ( sessions . incoming_links , 0 )
73- //console.log("incomingLink: " + JSON.stringify(incomingLink))
7472 assert . equal ( 1 , incomingLink . handle )
7573 assert . equal ( "sender-link" , incomingLink . name )
7674 assert . equal ( "my-queue" , incomingLink . targetAddress )
@@ -79,7 +77,6 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
7977 assert . equal ( 1 , incomingLink . deliveryCount )
8078
8179 let outgoingLink = connectionPage . getOutgoingLinkInfo ( sessions . outgoing_links , 0 )
82- //console.log("outgoingLink: " + JSON.stringify(outgoingLink))
8380 assert . equal ( 0 , outgoingLink . handle )
8481 assert . equal ( "receiver-link" , outgoingLink . name )
8582 assert . equal ( "my-queue" , outgoingLink . sourceAddress )
0 commit comments