diff options
Diffstat (limited to 'wintest')
-rw-r--r-- | wintest/wintest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py index 2a6da7d656..e4419beb0c 100644 --- a/wintest/wintest.py +++ b/wintest/wintest.py @@ -571,7 +571,7 @@ options { def run_tlntadmn(self, child): '''remove the annoying telnet restrictions''' child.sendline('tlntadmn config maxconn=1024') - child.expect("The settings were successfully updated") + child.expect(["The settings were successfully updated", "Access is denied"]) child.expect("C:") def disable_firewall(self, child): |