Commit 299a60d5 authored by Łukasz Nowak's avatar Łukasz Nowak

Use _, not - to separate words.

parent f2465a8e
......@@ -31,9 +31,9 @@ class Recipe(GenericBaseRecipe):
def _options(self, options):
options['password'] = self.generatePassword()
options['test_password'] = self.generatePassword()
options['test-password'] = self.generatePassword()
for x in xrange(0, int(options['parallel-test-database-amount'])):
options['test_password_%s' % x] = self.generatePassword()
options['test-password-%s' % x] = self.generatePassword()
def install(self):
path_list = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment