Skip to content

Commit

Permalink
Typos in wintest
Browse files Browse the repository at this point in the history
  • Loading branch information
Zahari Zahariev authored and abartlet committed Dec 16, 2010
1 parent a06519a commit 94b149f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wintest/test-s4-howto.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ def test_howto(t):
create_shares(t)
start_s4(t)
test_smbclient(t)
t.restart_bind(kerberos_support=True, include='{PREFIX}/private/named.conf')
t.restart_bind(kerberos_support=True, include='${PREFIX}/private/named.conf')
test_dns(t)
test_kerberos(t)
test_dyndns(t)
Expand Down
4 changes: 2 additions & 2 deletions wintest/wintest.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def start_bind(self):
self.rndc_cmd("flush")

def restart_bind(self, kerberos_support=False, include=None):
self.configure_bind(keberos_support=kerberos_support, include=include)
self.configure_bind(kerberos_support=kerberos_support, include=include)
self.stop_bind()
self.start_bind()

Expand Down Expand Up @@ -582,7 +582,7 @@ def disable_firewall(self, child):
if i != 0:
self.info("Firewall disable failed - ignoring")
child.expect("C:")

def set_dns(self, child):
child.sendline('netsh interface ip set dns "${WIN_NIC}" static ${INTERFACE_IP} primary')
i = child.expect(['C:', pexpect.EOF, pexpect.TIMEOUT], timeout=5)
Expand Down

0 comments on commit 94b149f

Please sign in to comment.