From d582484bea157cf3b791626773c608e936d584d7 Mon Sep 17 00:00:00 2001 From: Serhii Tsymbaliuk Date: Thu, 23 Aug 2018 16:09:35 +0200 Subject: [PATCH] Fix test_realmdomains::test_add_single_labeled_domain (Web UI test) Reviewed-By: Alexander Bokovoy Reviewed-By: Petr Vobornik --- ipatests/test_webui/test_realmdomains.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipatests/test_webui/test_realmdomains.py b/ipatests/test_webui/test_realmdomains.py index 08aba2df5..87912fe71 100644 --- a/ipatests/test_webui/test_realmdomains.py +++ b/ipatests/test_webui/test_realmdomains.py @@ -127,15 +127,15 @@ class test_realmdomains(UI_driver): @screenshot def test_add_single_labeled_domain(self): """ - Add domain with special_character + Add single label domain """ self.init_app() self.navigate_to_entity(ENTITY) - domain_with_special_char = u'ipa@123#' + single_label_domain = u'single-label-domain' # add with force - skipping DNS check - self._add_associateddomain([domain_with_special_char], force=True) + self._add_associateddomain([single_label_domain], force=True) dialog = self.get_last_error_dialog() assert ("invalid 'domain': single label domains are not supported" in dialog.text)