Changes between Initial Version and Version 1 of Ticket #32417, comment 7


Ignore:
Timestamp:
Feb 6, 2021, 7:43:22 AM (4 years ago)
Author:
Chris Jerdonek

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32417, comment 7

    initial v1  
    11Looking at the history of why `_tearDownClassInternal()` is called rather than `tearDownClass()`:
    22https://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 .tearDownClass()` would become:
     3it 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:
    44
    55{{{#!python
Back to Top