Skip to content

Commit

Permalink
Strip some trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jun 3, 2024
1 parent 72ab194 commit 341f3da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
{end_session_endpoint, <<"https://keycloak/logout">>},
{authorization_endpoint, <<"https://keycloak/authorize">>},
{token_endpoint, <<"https://keycloak/token">>},
{jwks_uri, <<"https://keycloak/keys">>}
{jwks_uri, <<"https://keycloak/keys">>}
]

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('management user with vhosts permissions', function () {
await overview.waitForQueuesTab()
assert.ok(!await overview.isPopupWarningDisplayed())
})
it('can access limited options in admin tab', async function () {
it('can access limited options in admin tab', async function () {
await overview.clickOnAdminTab()
await overview.waitForAdminTab()
assert.ok(!await overview.isPopupWarningDisplayed())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ module.exports = class BasePage {
return this.waitForDisplayed(CONNECTIONS_TAB)
}

async clickOnAdminTab () {
async clickOnAdminTab () {
return this.click(ADMIN_TAB)
}
async waitForAdminTab() {
async waitForAdminTab() {
return this.waitForDisplayed(ADMIN_TAB)
}

Expand All @@ -74,7 +74,7 @@ module.exports = class BasePage {
async clickOnExchangesTab () {
return this.click(EXCHANGES_TAB)
}
async waitForExchangesTab() {
async waitForExchangesTab() {
return this.waitForDisplayed(EXCHANGES_TAB)
}

Expand Down

0 comments on commit 341f3da

Please sign in to comment.