mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	[test/helper] Spelling
This commit is contained in:
		@@ -134,7 +134,7 @@ def expect_value(self, got, expected, field):
 | 
				
			|||||||
            type_expected = type(item_expected)
 | 
					            type_expected = type(item_expected)
 | 
				
			||||||
            self.assertEqual(
 | 
					            self.assertEqual(
 | 
				
			||||||
                type_expected, type_got,
 | 
					                type_expected, type_got,
 | 
				
			||||||
                'Type doesn\'t match at element %d of the list in field %s, expect %s, got %s' % (
 | 
					                'Type mismatch for list item at index %d for field %s, expected %r, got %r' % (
 | 
				
			||||||
                index, field, type_expected, type_got))
 | 
					                index, field, type_expected, type_got))
 | 
				
			||||||
            expect_value(self, item_got, item_expected, field)
 | 
					            expect_value(self, item_got, item_expected, field)
 | 
				
			||||||
    else:
 | 
					    else:
 | 
				
			||||||
@@ -152,7 +152,7 @@ def expect_value(self, got, expected, field):
 | 
				
			|||||||
            return
 | 
					            return
 | 
				
			||||||
        self.assertEqual(
 | 
					        self.assertEqual(
 | 
				
			||||||
            expected, got,
 | 
					            expected, got,
 | 
				
			||||||
            'invalid value for field %s, expected %r, got %r' % (field, expected, got))
 | 
					            'Invalid value for field %s, expected %r, got %r' % (field, expected, got))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def expect_dict(self, got_dict, expected_dict):
 | 
					def expect_dict(self, got_dict, expected_dict):
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user