| Index: testing_support/trial_dir.py
|
| diff --git a/testing_support/trial_dir.py b/testing_support/trial_dir.py
|
| index ff58b215d608cfa27786bbe84f66a0b6144bb11f..85342c3bc271f986e642cc522565e6378e699c58 100644
|
| --- a/testing_support/trial_dir.py
|
| +++ b/testing_support/trial_dir.py
|
| @@ -150,9 +150,9 @@ class TrialDirMixIn(object):
|
| class TestCase(auto_stub.TestCase, TrialDirMixIn):
|
| """Base unittest class that cleans off a trial directory in tearDown()."""
|
| def setUp(self):
|
| - auto_stub.TestCase.setUp(self)
|
| TrialDirMixIn.setUp(self)
|
| + auto_stub.TestCase.setUp(self)
|
|
|
| def tearDown(self):
|
| - TrialDirMixIn.tearDown(self)
|
| auto_stub.TestCase.tearDown(self)
|
| + TrialDirMixIn.tearDown(self)
|
|
|