summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2014-01-22 11:44:34 +0100
committerPetr Viktorin <pviktori@redhat.com>2014-02-05 15:38:39 +0100
commit3538c798cea1656d1ba4806d77360641137d4049 (patch)
treeaf9ecc9f5a4213051e521ccfaa63577255e7fd12
parent6347340eb468a1483e189e4cd8b22590b928f688 (diff)
downloadfreeipa-3538c798cea1656d1ba4806d77360641137d4049.tar.gz
freeipa-3538c798cea1656d1ba4806d77360641137d4049.tar.xz
freeipa-3538c798cea1656d1ba4806d77360641137d4049.zip
ipatests: test_legacy_clients: Change "test group" to "testgroup"
The integration test for legacy clients used incorrectly "test group" instead of "testgroup" as group used on AD for test purposes. This is inconsistent with the usage of "testuser". https://fedorahosted.org/freeipa/ticket/4131 Reviewed-By: Petr Viktorin <pviktori@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 6bbe54b32..3edceb2dc 100644
--- a/ipatests/test_integration/test_legacy_clients.py
+++ b/ipatests/test_integration/test_legacy_clients.py
@@ -118,7 +118,7 @@ class BaseTestLegacyClient(trust_tests.TestEnforcedPosixADTrust):
def test_getent_ad_group(self):
self.clear_sssd_caches()
- testgroup = 'test group@%s' % self.ad.domain.name
+ testgroup = 'testgroup@%s' % self.ad.domain.name
result = self.legacy_client.run_command(['getent', 'group', testgroup])
testgroup_stdout = "%s:\*:10047:" % testgroup
@@ -127,7 +127,7 @@ class BaseTestLegacyClient(trust_tests.TestEnforcedPosixADTrust):
def test_id_ad_user(self):
self.clear_sssd_caches()
testuser = 'testuser@%s' % self.ad.domain.name
- testgroup = 'test group@%s' % self.ad.domain.name
+ testgroup = 'testgroup@%s' % self.ad.domain.name
result = self.legacy_client.run_command(['id', testuser])