Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcialRosales committed Nov 28, 2024
1 parent 0f9a7cf commit 1d8b28d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test-authnz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ on:
- 'deps/rabbit/**'
- 'deps/rabbitmq_auth_/**'
- 'deps/rabbitmq_mqtt/**'
- 'deps/rabbitmq_management/selenium/full-suite-authnz-messaging'
- 'deps/rabbitmq_management/selenium/suites/authnz-messaging/**'
- 'deps/rabbitmq_management/selenium/test/authnz-msg-protocols/**'
- .github/workflows/test-authnz.yaml
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
let sessions = await connectionPage.getSessions()
assert.equal(1, sessions.sessions.length)
let session = connectionPage.getSessionInfo(sessions.sessions, 0)
//console.log("session: " + JSON.stringify(session))
assert.equal(0, session.channelNumber)
assert.equal(1, session.nextIncomingId)
assert.equal(0, session.outgoingUnsettledDeliveries)
Expand All @@ -70,7 +69,6 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
assert.equal(1, sessions.outgoing_links.length)

let incomingLink = connectionPage.getIncomingLinkInfo(sessions.incoming_links, 0)
//console.log("incomingLink: " + JSON.stringify(incomingLink))
assert.equal(1, incomingLink.handle)
assert.equal("sender-link", incomingLink.name)
assert.equal("my-queue", incomingLink.targetAddress)
Expand All @@ -79,7 +77,6 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
assert.equal(1, incomingLink.deliveryCount)

let outgoingLink = connectionPage.getOutgoingLinkInfo(sessions.outgoing_links, 0)
//console.log("outgoingLink: " + JSON.stringify(outgoingLink))
assert.equal(0, outgoingLink.handle)
assert.equal("receiver-link", outgoingLink.name)
assert.equal("my-queue", outgoingLink.sourceAddress)
Expand Down

0 comments on commit 1d8b28d

Please sign in to comment.