Explorar o código

[test/helper] Only output a newline for forgotten keys if keys are really missing

Philipp Hagemeister %!s(int64=10) %!d(string=hai) anos
pai
achega
6f53c63df6
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      test/helper.py

+ 3 - 1
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)