Skip to content

Commit

Permalink
tests: fix setting default values in config
Browse files Browse the repository at this point in the history
  • Loading branch information
vankoven committed Mar 10, 2017
1 parent dbe5b58 commit 082cbcd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tempesta_fw/t/functional/helpers/tf_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,17 @@ def defaults(self):
self.config.read_dict({'General': {'verbose': '0',
'duration': '10',
'concurrent_connections': '10'},
'Client': {'hostname': 'localhost',
'Client': {'ip': '127.0.0.1',
'hostname': 'localhost',
'ab': 'ab',
'wrk': 'wrk',
'siege': 'siege',
'workdir': '/tmp/client',},
'workdir': '/tmp/client'},
'Tempesta': {'ip': '127.0.0.1',
'hostname': 'localhost',
'user': 'root',
'port': '22',
'workdir': '/root/tempesta',},
'workdir': '/root/tempesta'},
'Server': {'ip': '127.0.0.1',
'hostname': 'localhost',
'user': 'root',
Expand Down

0 comments on commit 082cbcd

Please sign in to comment.