mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed DeprecationWarning caused by assertEquals.
This commit is contained in:
		| @@ -151,5 +151,5 @@ class SelectRelatedTests(TestCase): | ||||
|         queryset = HybridSpecies.objects.select_related('parent_1').select_related('parent_2') | ||||
|         with self.assertNumQueries(1): | ||||
|             obj = queryset[0] | ||||
|             self.assertEquals(obj.parent_1, parent_1) | ||||
|             self.assertEquals(obj.parent_2, parent_2) | ||||
|             self.assertEqual(obj.parent_1, parent_1) | ||||
|             self.assertEqual(obj.parent_2, parent_2) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user