summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2014-04-06 18:45:16 +0200
committerAlexander Bokovoy <abokovoy@redhat.com>2014-05-09 13:57:04 +0300
commit086d9f46dd26114ecc722205824c0ce6f0c049cd (patch)
tree8ba78e43b8de2e3ace0d3ee427f6d26690885d1e
parent5ce88a1f89d756cdfdfcd0f1a27a940c185c3aa0 (diff)
downloadfreeipa-086d9f46dd26114ecc722205824c0ce6f0c049cd.tar.gz
freeipa-086d9f46dd26114ecc722205824c0ce6f0c049cd.tar.xz
freeipa-086d9f46dd26114ecc722205824c0ce6f0c049cd.zip
ipatests: legacy clients: Do not use external hostnames for testing login to legacy clients from master
Reviewed-By: Jakub Hrozek <jhrozek@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
-rw-r--r--ipatests/test_integration/test_legacy_clients.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipatests/test_integration/test_legacy_clients.py b/ipatests/test_integration/test_legacy_clients.py
index 4e8b52e6b..71b266a94 100644
--- a/ipatests/test_integration/test_legacy_clients.py
+++ b/ipatests/test_integration/test_legacy_clients.py
@@ -180,7 +180,7 @@ class BaseTestLegacyClient(object):
'%s '
'"echo test"' %
(self.legacy_client.config.admin_password,
- self.legacy_client.external_hostname))
+ self.legacy_client.hostname))
assert "test" in result.stdout_text
@@ -197,7 +197,7 @@ class BaseTestLegacyClient(object):
'-l %s '
'%s '
'"echo test"' %
- (testuser, self.legacy_client.external_hostname))
+ (testuser, self.legacy_client.hostname))
assert "test" in result.stdout_text