Fixing bug in "test_environment_generator.py"
The method "generate_environments" in environment_generator.py takes two arguments but 1 given in "test_environment_generator.py" Change-Id: I39abcf2340ce04f3d193d80c8af177027c512556
This commit is contained in:
parent
e6db8c4ad0
commit
6035443151
@ -480,11 +480,13 @@ parameter_defaults:
|
|||||||
fake_template2, fake_nested_output]
|
fake_template2, fake_nested_output]
|
||||||
mock_open.side_effect = mock_se
|
mock_open.side_effect = mock_se
|
||||||
if not self.exception:
|
if not self.exception:
|
||||||
environment_generator.generate_environments('ignored.yaml')
|
environment_generator.generate_environments('ignored.yaml',
|
||||||
|
'environments')
|
||||||
else:
|
else:
|
||||||
self.assertRaises(self.exception,
|
self.assertRaises(self.exception,
|
||||||
environment_generator.generate_environments,
|
environment_generator.generate_environments,
|
||||||
'ignored.yaml')
|
'ignored.yaml',
|
||||||
|
'environments')
|
||||||
return
|
return
|
||||||
expected = environment_generator._FILE_HEADER + self.expected_output
|
expected = environment_generator._FILE_HEADER + self.expected_output
|
||||||
with open(fake_output_path) as f:
|
with open(fake_output_path) as f:
|
||||||
|
Loading…
Reference in New Issue
Block a user