Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: testing_support/trial_dir.py

Issue 1468983002: trial_dir: remove files after auto-unmocking stuff. (Closed) Base URL: https://chromium.googlesource.com/infra/testing/testing_support.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698