1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-10 04:23:50 +03:00

r26527: Start on tests for provision.

(This used to be commit 84ac6c6bbf)
This commit is contained in:
Jelmer Vernooij
2007-12-18 18:54:19 +01:00
committed by Stefan Metzmacher
parent 80529722e3
commit 4e6ab64762
5 changed files with 97 additions and 42 deletions

View File

@@ -129,8 +129,6 @@ def substitute_var(text, values):
assert isinstance(value, str), "Value %r for %s is not a string" % (value, name)
text = text.replace("${%s}" % name, value)
assert "${" not in text, text
return text