mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[test/helper] Clarify which keys have to be added
This commit is contained in:
		| @@ -148,9 +148,15 @@ def expect_info_dict(self, got_dict, expected_dict): | |||||||
|                 return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n') |                 return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n') | ||||||
|             else: |             else: | ||||||
|                 return repr(v) |                 return repr(v) | ||||||
|         info_dict_str = ''.join( |         info_dict_str = '' | ||||||
|             '    %s: %s,\n' % (_repr(k), _repr(v)) |         if len(missing_keys) != len(expected_dict): | ||||||
|             for k, v in test_info_dict.items()) |             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' | ||||||
|  |         info_dict_str += ''.join( | ||||||
|  |             '    %s: %s,\n' % (_repr(k), _repr(test_info_dict[k])) | ||||||
|  |             for k in missing_keys) | ||||||
|         write_string( |         write_string( | ||||||
|             '\n\'info_dict\': {\n' + info_dict_str + '}\n', out=sys.stderr) |             '\n\'info_dict\': {\n' + info_dict_str + '}\n', out=sys.stderr) | ||||||
|         self.assertFalse( |         self.assertFalse( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user