Changes between Initial Version and Version 2 of Ticket #32437
- Timestamp:
- Feb 11, 2021, 4:20:51 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32437
- Property Has patch set
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #32437 – Description
initial v2 11 11 ALLOWED_HOSTS={'append': cls.allowed_host}, 12 12 ) 13 cls._live_server_modified_settings.enable() 13 14 ... 14 15 if cls.server_thread.error: … … 19 20 }}} 20 21 21 But `_tearDownClassInternal()` [https://github.com/django/django/blob/0963f184abd96800b76b19a6a181e1b544c7fafe/django/test/testcases.py#L1559-L1568 doesn't undo] the call to ` modify_settings()`.22 But `_tearDownClassInternal()` [https://github.com/django/django/blob/0963f184abd96800b76b19a6a181e1b544c7fafe/django/test/testcases.py#L1559-L1568 doesn't undo] the call to `cls._live_server_modified_settings.enable()`. 22 23 23 24 I will post a PR shortly.