about summary refs log tree commit diff
path: root/test/helper.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-18 00:37:48 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-18 00:37:54 +0100
commit6f53c63df66d95ea684f84ef2f7f0e697acc1d20 (patch)
tree1c7c09631d6220964bb7e2c0b1c18f26020f0346 /test/helper.py
parent1def5f359ef6e197e4cc5d610ed86e109e240080 (diff)
downloadyoutube-dl-6f53c63df66d95ea684f84ef2f7f0e697acc1d20.tar.gz
youtube-dl-6f53c63df66d95ea684f84ef2f7f0e697acc1d20.tar.xz
youtube-dl-6f53c63df66d95ea684f84ef2f7f0e697acc1d20.zip
[test/helper] Only output a newline for forgotten keys if keys are really missing
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py
index 651ef99b9..fef2db284 100644
--- 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)