Clarify testinfra socket name for keycloak rdbms

Trivial cleanup of some variable name copy-paste I overlooked,
making the source code for the test clearer.

Change-Id: I5a15e0733b3cf2ceb26f46a2f3d9a9f059d4f702
This commit is contained in:
Jeremy Stanley 2024-02-07 22:46:00 +00:00
parent f1ad3c5198
commit 0d34d9678b
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ testinfra_hosts = ['keycloak99.opendev.org']
def test_rdbms_listening(host):
keycloak = host.socket("tcp://::1:3306")
assert keycloak.is_listening
rdbms = host.socket("tcp://::1:3306")
assert rdbms.is_listening
def test_keycloak_listening(host):
keycloak = host.socket("tcp://::1:8080")