projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1def5f3
)
[test/helper] Only output a newline for forgotten keys if keys are really missing
author
Philipp Hagemeister
<phihag@phihag.de>
Tue, 17 Feb 2015 23:37:48 +0000
(
00:37
+0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Tue, 17 Feb 2015 23:37:54 +0000
(
00:37
+0100)
test/helper.py
patch
|
blob
|
history
diff --git
a/test/helper.py
b/test/helper.py
index 651ef99b983973dab1f17ab8619849af2b9fe9b1..fef2db28404a4494496bba5951d8c1be0268812c 100644
(file)
--- a/
test/helper.py
+++ b/
test/helper.py
@@
-163,7
+163,9
@@
def expect_info_dict(self, got_dict, expected_dict):
info_dict_str += ''.join(
' %s: %s,\n' % (_repr(k), _repr(v))
for k, v in test_info_dict.items() if k not in missing_keys)
- info_dict_str += '\n'
+
+ if info_dict_str:
+ info_dict_str += '\n'
info_dict_str += ''.join(
' %s: %s,\n' % (_repr(k), _repr(test_info_dict[k]))
for k in missing_keys)