Skip to content
Snippets Groups Projects
Commit 9f5f7e6d authored by André Anjos's avatar André Anjos :speech_balloon: Committed by Tiago de Freitas Pereira
Browse files

Better fix w/o leaving something untested

parent 25b5d50f
No related branches found
No related tags found
1 merge request!37Issue 8 remove database configuration
...@@ -54,6 +54,8 @@ def check_parameters(args_file, args_cmdline): ...@@ -54,6 +54,8 @@ def check_parameters(args_file, args_cmdline):
if (isinstance(attr_file, (bool, str, int, list))) or (attr_file is None): if (isinstance(attr_file, (bool, str, int, list))) or (attr_file is None):
assert attr_cmdline == attr_file, '(%s) %r != %r' % \ assert attr_cmdline == attr_file, '(%s) %r != %r' % \
(attr, attr_cmdline, attr_file) (attr, attr_cmdline, attr_file)
else:
assert False, '(%s) %r == %r?' % (attr, attr_cmdline, attr_file)
def test_basic(): def test_basic():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment