summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-09-30 11:10:29 +0200
committerMartin Kosek <mkosek@redhat.com>2011-09-30 12:25:09 +0200
commit79e9feb247daed4b65361b92b7e0fc7e1a5caa3e (patch)
tree57868f6f88ea0a12bb36ee8b40b643e04441cc7b
parent759ae9e2ef6ce9e4674177cb7892f0cc1c7186cd (diff)
downloadfreeipa-79e9feb247daed4b65361b92b7e0fc7e1a5caa3e.tar.gz
freeipa-79e9feb247daed4b65361b92b7e0fc7e1a5caa3e.tar.xz
freeipa-79e9feb247daed4b65361b92b7e0fc7e1a5caa3e.zip
Fix HBAC tests hostnames
Make HBAC test hosts compliant with hostname restrictions placed in ticket 1780.
-rw-r--r--tests/test_xmlrpc/test_hbac_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_xmlrpc/test_hbac_plugin.py b/tests/test_xmlrpc/test_hbac_plugin.py
index f1c8c84c..ebb5d17e 100644
--- a/tests/test_xmlrpc/test_hbac_plugin.py
+++ b/tests/test_xmlrpc/test_hbac_plugin.py
@@ -41,9 +41,9 @@ class test_hbac(XMLRPC_test):
test_user = u'hbacrule_test_user'
test_group = u'hbacrule_test_group'
- test_host = u'hbacrule._test_netgroup'
+ test_host = u'hbacrule.test-netgroup'
test_hostgroup = u'hbacrule_test_hostgroup'
- test_sourcehost = u'hbacrule._test_src_host'
+ test_sourcehost = u'hbacrule.test-src-host'
test_sourcehostgroup = u'hbacrule_test_src_hostgroup'
test_service = u'sshd'
test_host_external = u'notfound.example.com'