Always call parent setUp/tearDown methods in test suites.

Review Request #9230 — Created Sept. 28, 2017 and submitted — Latest diff uploaded

Information

Djblets
release-0.10.x
c25725b...

Reviewers

We had a number of test suites that weren't calling their parent class's
setUp() or tearDown() methods. Strictly speaking, it's not necessary
to call these in these cases, but it will be important down the road if
there are any changes in the inheritance. To keep things consistent and
safe going forward, the parent methods are now called in every suite.

Unit tests pass.

    Loading...