Changes between Initial Version and Version 1 of Ticket #32417, comment 7
- Timestamp:
- Feb 6, 2021, 7:43:22 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32417, comment 7
initial v1 1 1 Looking at the history of why `_tearDownClassInternal()` is called rather than `tearDownClass()`: 2 2 https://github.com/django/django/commit/73a610d2a81bc3bf2d3834786b2458bc85953ed0 3 it looks like the safer option might be to move the final two lines of `LiveServerTestCase.tearDownClass()` into `LiveServerTestCase._tearDownClassInternal()`, so that `LiveServerTestCase 3 it looks like the safer option might be to move the final two lines of `LiveServerTestCase.tearDownClass()` into `LiveServerTestCase._tearDownClassInternal()`, so that `LiveServerTestCase.tearDownClass()` would become: 4 4 5 5 {{{#!python