We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986b336 commit 5b3f6e8Copy full SHA for 5b3f6e8
source/confParser.py
@@ -42,6 +42,7 @@ def findCertFile(path):
42
return name
43
return None
44
45
+
46
def merge_defaults_and_args(defaults, args):
47
'''merge default config parameters with input parameters from the command line'''
48
brConfig = {}
tests/test_params.py
@@ -2,10 +2,10 @@
2
from nose.tools import with_setup
3
4
5
-def my_setup():
6
- global a,b,c
+def my_setup():
+ global a, b, c
7
a = parse_defaults_from_config_file()
8
- b,c = parse_cmd_args([])
+ b, c = parse_cmd_args([])
9
10
11
def test_case01():
0 commit comments