mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	[5.0.x] Applied Black's 2024 stable style.
https://github.com/psf/black/releases/tag/24.1.0
Backport of 305757aec1 from main
			
			
This commit is contained in:
		| @@ -2,6 +2,7 @@ | ||||
| The tests are shared with contenttypes_tests and so shouldn't import or | ||||
| reference any models directly. Subclasses should inherit django.test.TestCase. | ||||
| """ | ||||
|  | ||||
| from operator import attrgetter | ||||
|  | ||||
|  | ||||
| @@ -117,8 +118,11 @@ class BaseOrderWithRespectToTests: | ||||
|                 return "other" | ||||
|  | ||||
|         with self.settings(DATABASE_ROUTERS=[WriteToOtherRouter()]): | ||||
|             with self.assertNumQueries(0, using="default"), self.assertNumQueries( | ||||
|                 1, | ||||
|                 using="other", | ||||
|             with ( | ||||
|                 self.assertNumQueries(0, using="default"), | ||||
|                 self.assertNumQueries( | ||||
|                     1, | ||||
|                     using="other", | ||||
|                 ), | ||||
|             ): | ||||
|                 self.q1.set_answer_order([3, 1, 2, 4]) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user