Commit 240c255d authored by yolandyan's avatar yolandyan Committed by Commit bot

Fix ChromeActivityTestCaseBase tearDown mistake

In the JUnit4 conversion CL (https://codereview.chromium.org/2815453003)
super.tearDown() call was mistakenly removed.

BUG=718454

Review-Url: https://codereview.chromium.org/2861433006
Cr-Commit-Position: refs/heads/master@{#469379}
parent 9cc81c66
......@@ -59,6 +59,7 @@ public abstract class ChromeActivityTestCaseBase<T extends ChromeActivity>
@Override
protected void tearDown() throws Exception {
mTestCommon.tearDown();
super.tearDown();
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment